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() { 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}`)