Browse Source

Merge pull request #2480 from Budibase/fix/datasource-updates

fix datasources not getting updated correctly
pull/4023/head
Kevin Åberg Kultalahti 5 years ago
committed by GitHub
parent
commit
4b2e2d3425
  1. 4
      packages/server/src/api/controllers/datasource.js

4
packages/server/src/api/controllers/datasource.js

@ -60,8 +60,8 @@ exports.buildSchemaFromDb = async function (ctx) {
exports.update = async function (ctx) {
const db = new CouchDB(ctx.appId)
const datasourceId = ctx.params.datasourceId
const datasource = await db.get(datasourceId)
datasource.name = ctx.request.body.name
let datasource = await db.get(datasourceId)
datasource = { ...datasource, ...ctx.request.body }
const response = await db.put(datasource)
datasource._rev = response.rev

Loading…
Cancel
Save