Skip to content

Commit

Permalink
fix(client): shortcut keys for toggle command palette (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
c0dedance authored Jan 6, 2024
1 parent f19ee6e commit 4246a25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/client/src/components/CommandPalette.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ async function enterItem(item: CommandItem) {
}
useEventListener('keydown', (e) => {
if ((e.ctrlKey || e.metaKey) && e.key === 'k') {
if ((e.altKey || e.metaKey) && e.key === 'k') {
e.preventDefault()
overrideItems.value = undefined
search.value = ''
Expand Down

0 comments on commit 4246a25

Please sign in to comment.