Skip to content

Commit 1b11197

Browse files
author
Your Name
committed
fix: update settings shortcut key from ',' to 's'
1 parent 8b57e4e commit 1b11197

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/components/AppHeader.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const desktopLinks = computed<NavigationConfig>(() => [
3232
name: 'Settings',
3333
label: $t('nav.settings'),
3434
to: { name: 'settings' },
35-
keyshortcut: ',',
35+
keyshortcut: 's',
3636
type: 'link',
3737
external: false,
3838
iconClass: 'i-lucide:settings',
@@ -201,8 +201,8 @@ function handleSearchFocus() {
201201
}
202202
203203
useShortcuts({
204-
'c': () => ({ name: 'compare' }),
205-
',': () => ({ name: 'settings' }),
204+
c: () => ({ name: 'compare' }),
205+
s: () => ({ name: 'settings' }),
206206
})
207207
</script>
208208

0 commit comments

Comments
 (0)