File tree Expand file tree Collapse file tree 2 files changed +1
-1
lines changed
projects/igniteui-angular/src/lib Expand file tree Collapse file tree 2 files changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,6 @@ export class PivotColumnDimensionsStrategy implements IPivotDimensionStrategy {
121
121
delete hierarchy [ k ] ;
122
122
}
123
123
} ) ;
124
- delete hierarchy . processed ;
125
124
for ( const property in flatCols ) {
126
125
if ( flatCols . hasOwnProperty ( property ) ) {
127
126
hierarchy [ property ] = flatCols [ property ] ;
Original file line number Diff line number Diff line change @@ -77,6 +77,7 @@ export class IgxPivotRowExpansionPipe implements PipeTransform {
77
77
private cleanState ( data , pivotKeys ) {
78
78
data . forEach ( rec => {
79
79
const keys = Object . keys ( rec ) ;
80
+ delete rec . processed ;
80
81
//remove all record keys from final data since we don't need them anymore.
81
82
keys . forEach ( k => {
82
83
if ( k . indexOf ( pivotKeys . records ) !== - 1 ) {
You can’t perform that action at this time.
0 commit comments