Skip to content

Commit 782eabd

Browse files
MKirovaMKirova
authored andcommitted
Fix tests.
1 parent e46e7ae commit 782eabd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)