Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
benjackwhite committed Nov 23, 2023
1 parent 2a6a3f6 commit 615d41d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/lib/components/CommandBar/commandBarLogic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const commandBarLogic = kea<commandBarLogicType>([
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') {
Expand Down

0 comments on commit 615d41d

Please sign in to comment.