Skip to content

Commit 3165e87

Browse files
committed
chore(*): Fix issue from merging
1 parent 728ce71 commit 3165e87

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

projects/igniteui-angular/src/lib/grids/pivot-grid/pivot-grid.component.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -297,9 +297,6 @@ export class IgxPivotGridComponent extends IgxGridBaseDirective implements OnIni
297297
ref.instance.field = key;
298298
ref.instance.parent = parent;
299299
ref.changeDetectorRef.detectChanges();
300-
301-
const measureChildren = this.getMeasureChildren(factoryColumn, data, ref.instance, false);
302-
ref.instance.children.reset(measureChildren);
303300
columns.push(ref.instance);
304301
if (this.hasMultipleValues) {
305302
const measureChildren = this.getMeasureChildren(factoryColumn, data , ref.instance, false);

src/app/pivot-grid/pivot-grid.sample.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ export class PivotGridSampleComponent {
9494
enabled: true,
9595
dataType: 'currency',
9696
styles: {
97-
upFont1: (rowData: any, columnKey: any): boolean => rowData[columnKey] > 150,
98-
downFont1: (rowData: any, columnKey: any): boolean => rowData[columnKey] <= 150
97+
upFont1: (rowData: any, columnKey: any): boolean => rowData[columnKey] > 50,
98+
downFont1: (rowData: any, columnKey: any): boolean => rowData[columnKey] <= 50
9999
},
100100
}
101101
],

0 commit comments

Comments
 (0)