File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
projects/igniteui-angular/src/lib/grids/pivot-grid Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -203,13 +203,13 @@ export class IgxPivotGridComponent extends IgxGridBaseDirective implements OnIni
203203
204204 public get unpinnedColumns ( ) {
205205 const rowKeys = this . pivotConfiguration . rows . map ( x => x . member ) ;
206- const cols = super . unpinnedColumns . filter ( x => rowKeys . indexOf ( x . field ) === - 1 ) ;
206+ const cols = this . _unpinnedColumns . filter ( x => rowKeys . indexOf ( x . field ) === - 1 ) ;
207207 return cols ;
208208 }
209209
210210 public get pinnedColumns ( ) {
211211 const rowKeys = this . pivotConfiguration . rows . map ( x => x . member ) ;
212- const cols = super . pinnedColumns . filter ( x => rowKeys . indexOf ( x . field ) === - 1 ) ;
212+ const cols = this . _pinnedColumns . filter ( x => rowKeys . indexOf ( x . field ) === - 1 ) ;
213213 return cols ;
214214 }
215215}
You can’t perform that action at this time.
0 commit comments