Skip to content

Commit 132ac0f

Browse files
committed
chore(igxTreeGrid): Removes pinned chip for filtered out parents
1 parent 65f60b5 commit 132ac0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@ export class IgxTreeGridComponent extends IgxGridBaseDirective implements GridTy
612612
$implicit: this.isGhostRecord(rowData) ? rowData.recordRef : rowData,
613613
index: this.getRowIndex(rowIndex, pinned),
614614
templateID: this.isSummaryRow(rowData) ? 'summaryRow' : 'dataRow',
615-
disabled: this.isGhostRecord(rowData)
615+
disabled: this.isGhostRecord(rowData) ? rowData.recordRef.isFilteredOutParent === undefined : false
616616
};
617617
}
618618

0 commit comments

Comments
 (0)