Skip to content

Commit ca72707

Browse files
Vasil MihalkovVasil Mihalkov
authored andcommitted
fix(grid): Change where we call the stopPropagation
1 parent 79148c4 commit ca72707

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/igniteui-angular/src/lib/grids/grid-navigation.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ export class IgxGridNavigationService {
5050
constructor(protected platform: PlatformUtil) { }
5151

5252
handleNavigation(event: KeyboardEvent) {
53-
event.stopPropagation();
5453
const key = event.key.toLowerCase();
5554
if (this.grid.crudService.cell && NAVIGATION_KEYS.has(key)) {
55+
event.stopPropagation();
5656
return;
5757
}
5858
if (event.repeat && SUPPORTED_KEYS.has(key) || (key === 'tab' && this.grid.crudService.cell)) {

0 commit comments

Comments
 (0)