Merge pull request #2012 from Budibase/fix/update-row

Update row automation action fix
This commit is contained in:
Michael Drury 2021-07-16 19:42:09 +01:00 committed by GitHub
commit 353f19ebaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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,
},
request: {
body: inputs.row,
body: {
...inputs.row,
_id: inputs.rowId,
},
},
appId,
eventEmitter: emitter,