Skip to content

Commit

Permalink
fix: DH-17730: Fix Proxy Model Undefined Formatter (#2237)
Browse files Browse the repository at this point in the history
Fixes https://deephaven.atlassian.net/browse/DH-17730 in Enterprise.
Will need to be cherry picked back to v0.85.
web-client-ui issue is
#2234
  • Loading branch information
dgodinez-dh authored Sep 26, 2024
1 parent 4839d72 commit ee1bc2f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/iris-grid/src/IrisGridProxyModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -436,6 +436,14 @@ class IrisGridProxyModel extends IrisGridModel implements PartitionedGridModel {
: false;
}

get formatter(): Formatter {
return this.originalModel.formatter;
}

set formatter(formatter: Formatter) {
this.originalModel.formatter = formatter;
}

setViewport = (
top: number,
bottom: number,
Expand Down

0 comments on commit ee1bc2f

Please sign in to comment.