Fixing issue with update row after rows API changed.

This commit is contained in:
Michael Drury 2021-07-16 19:13:44 +01:00
parent 5b2c463ebf
commit db559e738b
1 changed files with 4 additions and 1 deletions

View File

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