1
0
Fork 0
mirror of synced 2024-10-01 17:47:46 +13:00

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 2668f2ba40
commit 126bf74347

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,