Skip to content

Commit c3d8433

Browse files
authored
fix: Aggregations should be available when creating a rollup (#1129)
- 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
1 parent a069543 commit c3d8433

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/iris-grid/src/IrisGrid.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4195,7 +4195,7 @@ export class IrisGrid extends Component<IrisGridProps, IrisGridState> {
41954195
model.isCustomColumnsAvailable,
41964196
model.isFormatColumnsAvailable,
41974197
model.isRollupAvailable,
4198-
model.isTotalsAvailable,
4198+
model.isTotalsAvailable || isRollup,
41994199
model.isSelectDistinctAvailable,
42004200
model.isExportAvailable,
42014201
this.toggleFilterBarAction,

0 commit comments

Comments
 (0)