mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 03:36:07 +03:00
Fix keyboard shortcut icons on macOS (#7869)
This commit is contained in:
parent
8fccef86d8
commit
d79d5ceeac
1 changed files with 1 additions and 1 deletions
|
@ -175,7 +175,7 @@ export const KEY_ICON: Record<string, string> = {
|
||||||
};
|
};
|
||||||
if (isMac) {
|
if (isMac) {
|
||||||
KEY_ICON[Key.META] = "⌘";
|
KEY_ICON[Key.META] = "⌘";
|
||||||
KEY_ICON[Key.SHIFT] = "⌥";
|
KEY_ICON[Key.ALT] = "⌥";
|
||||||
}
|
}
|
||||||
|
|
||||||
export const CATEGORIES: Record<CategoryName, ICategory> = {
|
export const CATEGORIES: Record<CategoryName, ICategory> = {
|
||||||
|
|
Loading…
Reference in a new issue