Skip to content

Commit 1a840d1

Browse files
MKirovaMKirova
authored andcommitted
chore(*): Fixing in a different way so that it works without ivy enabled as well.
1 parent 80b6a86 commit 1a840d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,7 @@ export class IgxHierarchicalGridCellComponent extends IgxGridCellComponent imple
9090
* @hidden
9191
* @internal
9292
*/
93-
@HostListener('keydown', ['$event'])
94-
_dispatchEvent(event: KeyboardEvent) {
93+
dispatchEvent(event: KeyboardEvent) {
9594
const key = event.key.toLowerCase();
9695
if (event.altKey && !this.row.added) {
9796
const grid = this.gridAPI.grid;
@@ -113,6 +112,7 @@ export class IgxHierarchicalGridCellComponent extends IgxGridCellComponent imple
113112
}
114113
return;
115114
}
115+
super.dispatchEvent(event);
116116
}
117117

118118
protected persistFocusedCell(rowID) {

0 commit comments

Comments
 (0)