Skip to content

Commit

Permalink
add undefined type to edit function
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanalvizo committed Jun 9, 2023
1 parent 41be387 commit 95b9911
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/iris-grid/src/IrisGridTableModelTemplate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2025,7 +2025,7 @@ class IrisGridTableModelTemplate<
}
}

editValueForCell(x: ModelIndex, y: ModelIndex): string | null {
editValueForCell(x: ModelIndex, y: ModelIndex): string | null | undefined {
return this.textValueForCell(x, y);
}

Expand Down

0 comments on commit 95b9911

Please sign in to comment.