Skip to content

Commit

Permalink
fix: DH-17730: Fix Proxy Model Undefined Formatter (#2237) (#2238)
Browse files Browse the repository at this point in the history
closes #2234
Fixes https://deephaven.atlassian.net/browse/DH-17730 in Enterprise.
This is the cherry pick back to v0.85.
  • Loading branch information
dgodinez-dh authored Sep 26, 2024
1 parent 7d6322c commit cf20b7f
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 @@ -434,6 +434,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 cf20b7f

Please sign in to comment.