mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-30 11:56:41 +00:00
fix(nc-gui): pass empty object instead of name in JSONUrlTemplateAdapter
This commit is contained in:
@@ -7,8 +7,7 @@ export default class JSONUrlTemplateAdapter extends JSONTemplateAdapter {
|
||||
|
||||
constructor(url: string, parserConfig: Record<string, any>) {
|
||||
const { $api } = useNuxtApp()
|
||||
const name = url.split('/').pop()
|
||||
super(name, parserConfig)
|
||||
super({}, parserConfig)
|
||||
this.url = url
|
||||
this.$api = $api
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user