Skip to content
Closed
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions app/components/AppHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const desktopLinks = computed<NavigationConfig>(() => [
name: 'Settings',
label: $t('nav.settings'),
to: { name: 'settings' },
keyshortcut: ',',
keyshortcut: 's',
type: 'link',
external: false,
iconClass: 'i-lucide:settings',
Expand Down Expand Up @@ -201,8 +201,8 @@ function handleSearchFocus() {
}

useShortcuts({
'c': () => ({ name: 'compare' }),
',': () => ({ name: 'settings' }),
c: () => ({ name: 'compare' }),
s: () => ({ name: 'settings' }),
})
</script>

Expand Down
Loading