Skip to content

Commit

Permalink
change null to undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
AkshatJawne committed May 31, 2024
1 parent b2a696d commit 310a928
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/iris-grid/src/IrisGridTreeTableModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ class IrisGridTreeTableModel extends IrisGridTableModelTemplate<
this.viewportData.rows[r - this.viewportData.offset];
assertNotNull(intersection.startColumn);
assertNotNull(intersection.endColumn);
if (formatValue != null) {
if (formatValue !== undefined) {
for (
let c = intersection.startColumn;
c <= intersection.endColumn;
Expand Down

0 comments on commit 310a928

Please sign in to comment.