Return id on SeaTable update

This commit is contained in:
Jan Oberhauser 2021-09-29 19:24:34 -05:00
parent 4bce33a530
commit 973c4f86d2

View file

@ -301,7 +301,7 @@ export class SeaTable implements INodeType {
body.row_id = rowId;
responseData = await seaTableApiRequest.call(this, ctx, 'PUT', `/dtable-server/api/v1/dtables/{{dtable_uuid}}/rows/`, body);
returnData.push(responseData);
returnData.push({ _id: rowId, ... responseData });
} catch (error) {
if (this.continueOnFail()) {
returnData.push({ error: error.message });