Skip to content

Commit 80b6a86

Browse files
MKirovaMKirova
authored andcommitted
chore(*): Fixing tests.
1 parent 9a092c7 commit 80b6a86

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -888,7 +888,7 @@ export class IgxGridCellComponent implements OnInit, OnChanges, OnDestroy {
888888
* @internal
889889
*/
890890
@HostListener('keydown', ['$event'])
891-
_dispatchEvent(event: KeyboardEvent) {
891+
dispatchEvent(event: KeyboardEvent) {
892892
const key = event.key.toLowerCase();
893893
const shift = event.shiftKey;
894894
const ctrl = event.ctrlKey;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export class IgxHierarchicalGridCellComponent extends IgxGridCellComponent imple
9191
* @internal
9292
*/
9393
@HostListener('keydown', ['$event'])
94-
dispatchEvent(event: KeyboardEvent) {
94+
_dispatchEvent(event: KeyboardEvent) {
9595
const key = event.key.toLowerCase();
9696
if (event.altKey && !this.row.added) {
9797
const grid = this.gridAPI.grid;

0 commit comments

Comments
 (0)