Skip to content

Commit b423904

Browse files
committed
fix(grid): add alt+l symbol under mac Closes #7287
1 parent 5ce97ee commit b423904

File tree

1 file changed

+3
-1
lines changed
  • projects/igniteui-angular/src/lib/core

1 file changed

+3
-1
lines changed

projects/igniteui-angular/src/lib/core/utils.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,9 @@ export const NAVIGATION_KEYS = new Set([
329329
export const ROW_EXPAND_KEYS = new Set('right down arrowright arrowdown'.split(' '));
330330
export const ROW_COLLAPSE_KEYS = new Set('left up arrowleft arrowup'.split(' '));
331331
export const SUPPORTED_KEYS = new Set([...Array.from(NAVIGATION_KEYS), 'enter', 'f2', 'escape', 'esc', 'pagedown', 'pageup', '+', 'add']);
332-
export const HEADER_KEYS = new Set([...Array.from(NAVIGATION_KEYS), 'escape', 'esc' , 'l']);
332+
export const HEADER_KEYS = new Set([...Array.from(NAVIGATION_KEYS), 'escape', 'esc' , 'l',
333+
/** This symbol corresponds to the Alt + L combination under MAC. */
334+
'¬']);
333335

334336
/**
335337
* @hidden

0 commit comments

Comments
 (0)