diff --git a/src/components/KeyboardInteraction/index.ts b/src/components/KeyboardInteraction/index.ts index 7ba7b64..3b14056 100644 --- a/src/components/KeyboardInteraction/index.ts +++ b/src/components/KeyboardInteraction/index.ts @@ -29,6 +29,10 @@ class KeyboardInteractionInner extends Component { return; // Do nothing if the event was already processed } + if (e.altKey || e.ctrlKey || e.shiftKey || e.metaKey) { + return; + } + switch (e.code) { case 'ArrowLeft': case 'KeyH':