Skip to content

Commit

Permalink
fix: add missing return for editvalueforcell, missing from TS conversion
Browse files Browse the repository at this point in the history
fixes #1087
  • Loading branch information
dsmmcken committed Feb 15, 2023
1 parent 28d97ad commit 5e07f61
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 5e07f61

Please sign in to comment.