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 8b57e4e commit 1b11197Copy full SHA for 1b11197
app/components/AppHeader.vue
@@ -32,7 +32,7 @@ const desktopLinks = computed<NavigationConfig>(() => [
32
name: 'Settings',
33
label: $t('nav.settings'),
34
to: { name: 'settings' },
35
- keyshortcut: ',',
+ keyshortcut: 's',
36
type: 'link',
37
external: false,
38
iconClass: 'i-lucide:settings',
@@ -201,8 +201,8 @@ function handleSearchFocus() {
201
}
202
203
useShortcuts({
204
- 'c': () => ({ name: 'compare' }),
205
- ',': () => ({ name: 'settings' }),
+ c: () => ({ name: 'compare' }),
+ s: () => ({ name: 'settings' }),
206
})
207
</script>
208
0 commit comments