We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f19ee6e commit 4246a25Copy full SHA for 4246a25
packages/client/src/components/CommandPalette.vue
@@ -55,7 +55,7 @@ async function enterItem(item: CommandItem) {
55
}
56
57
useEventListener('keydown', (e) => {
58
- if ((e.ctrlKey || e.metaKey) && e.key === 'k') {
+ if ((e.altKey || e.metaKey) && e.key === 'k') {
59
e.preventDefault()
60
overrideItems.value = undefined
61
search.value = ''
0 commit comments