mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-03 15:06:52 +00:00
fix(gui): GraphQL url correction
removed extra `/` from graphql path re #315 Signed-off-by: Pranav C <61551451+pranavxc@users.noreply.github.com>
This commit is contained in:
@@ -29,7 +29,7 @@ export default class GqlApi {
|
||||
|
||||
post(url, params) {
|
||||
return this.$axios({
|
||||
url: `${this.$axios.defaults.baseURL}/${url}`,
|
||||
url: `${this.$axios.defaults.baseURL}${url}`,
|
||||
method: 'post',
|
||||
data: params,
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user