Skip to content

Commit

Permalink
fix: Aggregations should be available when creating a rollup (#1129)
Browse files Browse the repository at this point in the history
- When there is a rollup config, aggregations go through the rollup
config
- https://github.com/deephaven/web-client-ui/blob/a069543812b6c544957ebf664e0918e98a3affbf/packages/iris-grid/src/IrisGrid.tsx#L1288
- Allow aggregations to be accessed when using a rollup config
  • Loading branch information
mofojed authored Mar 3, 2023
1 parent a069543 commit c3d8433
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/iris-grid/src/IrisGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4195,7 +4195,7 @@ export class IrisGrid extends Component<IrisGridProps, IrisGridState> {
model.isCustomColumnsAvailable,
model.isFormatColumnsAvailable,
model.isRollupAvailable,
model.isTotalsAvailable,
model.isTotalsAvailable || isRollup,
model.isSelectDistinctAvailable,
model.isExportAvailable,
this.toggleFilterBarAction,
Expand Down

0 comments on commit c3d8433

Please sign in to comment.