We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c53c3f commit 6a1cf99Copy full SHA for 6a1cf99
projects/igniteui-angular/src/lib/grids/pivot-grid/pivot-grid.pipes.ts
@@ -96,7 +96,7 @@ export class IgxPivotColumnPipe implements PipeTransform {
96
}
97
98
private isLeaf(record, pivotKeys) {
99
- return record[pivotKeys.records] && record[pivotKeys.records].some(r => r[pivotKeys.records]);
+ return !(record[pivotKeys.records] && record[pivotKeys.records].some(r => r[pivotKeys.records]));
100
101
102
0 commit comments