From 615d41deba5fecc2d76a51a90c34de1568ea8eec Mon Sep 17 00:00:00 2001 From: Ben White Date: Thu, 23 Nov 2023 16:37:25 +0100 Subject: [PATCH] Fix --- frontend/src/lib/components/CommandBar/commandBarLogic.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/lib/components/CommandBar/commandBarLogic.ts b/frontend/src/lib/components/CommandBar/commandBarLogic.ts index fd3d69659d6f6..ba1d9f30ba955 100644 --- a/frontend/src/lib/components/CommandBar/commandBarLogic.ts +++ b/frontend/src/lib/components/CommandBar/commandBarLogic.ts @@ -35,7 +35,7 @@ export const commandBarLogic = kea([ afterMount(({ actions, cache }) => { // register keyboard shortcuts cache.onKeyDown = (event: KeyboardEvent) => { - if (shouldIgnoreInput(e)) { + if (shouldIgnoreInput(event)) { return } if ((event.ctrlKey || event.metaKey) && event.key === 'k') {