fix naming of datasources

This commit is contained in:
Peter Clement 2021-09-24 10:12:30 +01:00
parent 4f5343ded9
commit 4c8a2b3a2d
1 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@
function prepareData() {
let datasource = {}
let existingTypeCount = $datasources.list.filter(
ds => ds.type == integration.type
ds => ds.source == integration.type
).length
let baseName = IntegrationNames[integration.type]
@ -31,8 +31,8 @@
if (integration.plus) {
updateDatasourceSchema(resp)
}
await datasources.fetch()
await datasources.select(resp["_id"])
console.log($datasources)
notifications.success(`Datasource updated successfully.`)
} catch (err) {
notifications.error(`Error saving datasource: ${err}`)