We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent daf10e4 commit 3db7d13Copy full SHA for 3db7d13
projects/igniteui-angular/src/lib/grids/grid-navigation.service.ts
@@ -542,7 +542,7 @@ export class IgxGridNavigationService {
542
if ([' ', 'spacebar', 'space'].indexOf(key) !== -1) {
543
this.handleColumnSelection(column, event);
544
}
545
- if (alt && key === 'l' || key === '¬' && this.grid.allowAdvancedFiltering) {
+ if (alt && (key === 'l' || key === '¬') && this.grid.allowAdvancedFiltering) {
546
this.grid.openAdvancedFilteringDialog();
547
548
if (ctrl && shift && key === 'l' && this.grid.allowFiltering && !column.columnGroup && column.filterable) {
0 commit comments