Skip to content

Commit 3db7d13

Browse files
committed
fix(advanced-filtering): fix failing tests
1 parent daf10e4 commit 3db7d13

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
@@ -542,7 +542,7 @@ export class IgxGridNavigationService {
542542
if ([' ', 'spacebar', 'space'].indexOf(key) !== -1) {
543543
this.handleColumnSelection(column, event);
544544
}
545-
if (alt && key === 'l' || key === '¬' && this.grid.allowAdvancedFiltering) {
545+
if (alt && (key === 'l' || key === '¬') && this.grid.allowAdvancedFiltering) {
546546
this.grid.openAdvancedFilteringDialog();
547547
}
548548
if (ctrl && shift && key === 'l' && this.grid.allowFiltering && !column.columnGroup && column.filterable) {

0 commit comments

Comments
 (0)