fix naming of datasources
This commit is contained in:
parent
4f5343ded9
commit
4c8a2b3a2d
|
@ -8,7 +8,7 @@
|
||||||
function prepareData() {
|
function prepareData() {
|
||||||
let datasource = {}
|
let datasource = {}
|
||||||
let existingTypeCount = $datasources.list.filter(
|
let existingTypeCount = $datasources.list.filter(
|
||||||
ds => ds.type == integration.type
|
ds => ds.source == integration.type
|
||||||
).length
|
).length
|
||||||
|
|
||||||
let baseName = IntegrationNames[integration.type]
|
let baseName = IntegrationNames[integration.type]
|
||||||
|
@ -31,8 +31,8 @@
|
||||||
if (integration.plus) {
|
if (integration.plus) {
|
||||||
updateDatasourceSchema(resp)
|
updateDatasourceSchema(resp)
|
||||||
}
|
}
|
||||||
await datasources.fetch()
|
|
||||||
await datasources.select(resp["_id"])
|
await datasources.select(resp["_id"])
|
||||||
|
console.log($datasources)
|
||||||
notifications.success(`Datasource updated successfully.`)
|
notifications.success(`Datasource updated successfully.`)
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
notifications.error(`Error saving datasource: ${err}`)
|
notifications.error(`Error saving datasource: ${err}`)
|
||||||
|
|
Loading…
Reference in New Issue