Skip to content

Commit

Permalink
Fix issue when editing with flow.
Browse files Browse the repository at this point in the history
  • Loading branch information
engPabloMartinez committed Oct 20, 2023
1 parent 64921de commit 6cf3443
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions force-app/main/default/lwc/odDatatable/odDatatable.js
Original file line number Diff line number Diff line change
Expand Up @@ -701,8 +701,10 @@ export default class ODDatatable extends LightningElement {
break;
}

// update the outputs
this._doUpdateOutputs(record, action);
if (!this._editWithFlow) {
// update the outputs
this._doUpdateOutputs(record, action);
}
}

handleAdd() {
Expand Down

0 comments on commit 6cf3443

Please sign in to comment.