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 64ea54d commit d592d16Copy full SHA for d592d16
projects/igniteui-angular/src/lib/grids/grid-base.directive.ts
@@ -2998,7 +2998,7 @@ export class IgxGridBaseDirective extends DisplayDensityBase implements
2998
* @internal
2999
*/
3000
public setFilteredSortedData(data, pinned: boolean) {
3001
- data = data ? data.map(rec => rec.ghostRecord !== undefined ? rec.recordRef : rec) : [];
+ data = data || [];
3002
if (this._pinnedRecordIDs.length > 0 && pinned) {
3003
this._filteredSortedPinnedData = data;
3004
this.pinnedRecords = data;
0 commit comments