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 be0601d commit fbcb5e5Copy full SHA for fbcb5e5
projects/igniteui-angular/src/lib/grids/tree-grid/tree-grid.pipes.ts
@@ -331,7 +331,7 @@ export class IgxTreeGridRowPinningPipe implements PipeTransform {
331
return [];
332
}
333
334
- const result = collection.filter((value, index) => grid.isRecordPinned(value));
+ const result = grid.flatData.filter((value, index) => grid.isRecordPinned(value));
335
336
// pinned records should be ordered as they were pinned.
337
result.sort((rec1, rec2) => grid.pinRecordIndex(rec1) - grid.pinRecordIndex(rec2));
0 commit comments