Skip to content

Commit

Permalink
fix: add missing return for editvalueforcell, missing from TS convers…
Browse files Browse the repository at this point in the history
…ion (#1090)

fixes #1087
  • Loading branch information
dsmmcken authored Feb 15, 2023
1 parent 28d97ad commit 1b00840
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/iris-grid/src/IrisGridProxyModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ class IrisGridProxyModel extends IrisGridModel {

editValueForCell: IrisGridTableModel['editValueForCell'] = (...args) => {
if (isEditableGridModel(this.model)) {
this.model.editValueForCell(...args);
return this.model.editValueForCell(...args);
}
return '';
};
Expand Down

0 comments on commit 1b00840

Please sign in to comment.