1
0
Fork 0
mirror of synced 2024-09-29 08:41:16 +13:00

fix layout of config modal

This commit is contained in:
Peter Clement 2021-09-27 10:04:01 +01:00
parent dad6412271
commit 7121b0a7c8

View file

@ -27,20 +27,15 @@
return datasource
}
async function saveDatasource() {
let success = true
try {
// Create datasource
const resp = await datasources.save(prepareData())
if (integration.plus) {
fetchedSchema = updateDatasourceSchema(resp)
updateDatasourceSchema(resp)
}
if (!fetchedSchema) {
return false
}
await datasources.select(resp._id)
$goto(`./datasource/${resp._id}`)
notifications.success(`Datasource updated successfully.`)
analytics.captureEvent(Events.DATASOURCE.CREATED, {
name: resp.name,
@ -48,7 +43,6 @@
})
} catch (err) {
notifications.error(`Error saving datasource: ${err}`)
return false
}
}
@ -56,10 +50,8 @@
try {
await datasources.updateSchema(datasourceJson)
await tables.fetch()
return true
} catch (err) {
notifications.error(`Error updating datasource schema: ${err}`)
return false
}
}
</script>