Skip to content

Commit f9ec7e5

Browse files
committed
chore(igxTreeGrid): Updates check for disabled row in row context
1 parent 21f1adc commit f9ec7e5

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
@@ -628,7 +628,7 @@ export class IgxTreeGridComponent extends IgxGridBaseDirective implements GridTy
628628
$implicit: rowData,
629629
index: rowIndex,
630630
templateID: this.isSummaryRow(rowData) ? 'summaryRow' : 'dataRow',
631-
disabled: this.isGhostRecord(rowData.data)
631+
disabled: this.isSummaryRow(rowData) ? false : this.isGhostRecord(rowData.data)
632632
};
633633
}
634634

0 commit comments

Comments
 (0)