Skip to content

Commit

Permalink
JS API should only show non-constituent columns in groupedColumns arr…
Browse files Browse the repository at this point in the history
…ay (#3482)

Fixes #3477
  • Loading branch information
niloc132 authored Mar 3, 2023
1 parent 3b3d523 commit b7e72c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ public JsTreeTable(WorkerConnection workerConnection, JsWidget widget) {
if (definition.isVisible()) {
columns[columns.length] = column;
}
if (definition.isRollupGroupByColumn()) {
if (definition.isRollupGroupByColumn() && !definition.isRollupConstituentNodeColumn()) {
groupedColumns.push(column);

if (hasConstituentColumns) {
Expand Down

0 comments on commit b7e72c9

Please sign in to comment.