Browse Source

Fixing issue with update row after rows API changed.

pull/4023/head
Michael Drury 5 years ago
parent
commit
126bf74347
  1. 5
      packages/server/src/automations/steps/updateRow.js

5
packages/server/src/automations/steps/updateRow.js

@ -76,7 +76,10 @@ module.exports.run = async function ({ inputs, appId, emitter }) {
rowId: inputs.rowId,
},
request: {
body: inputs.row,
body: {
...inputs.row,
_id: inputs.rowId,
},
},
appId,
eventEmitter: emitter,

Loading…
Cancel
Save