diff --git a/src/util/event-helpers.ts b/src/util/event-helpers.ts index 5ef663bf57..62eba92e9f 100644 --- a/src/util/event-helpers.ts +++ b/src/util/event-helpers.ts @@ -29,6 +29,10 @@ export const keyboardEventToKeyboardShortcut = (event: KeyboardEvent): string => keys.push('Ctrl') } + if (event.metaKey) { + keys.push('Meta') + } + if (event.altKey) { keys.push('Alt') }