Skip to content

Commit 9b2c854

Browse files
author
Your Name
committed
bug: fixed Settings nav icon rendering in header
1 parent 7984140 commit 9b2c854

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/components/AppHeader.vue

Lines changed: 4 additions & 4 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

@@ -316,7 +316,7 @@ useShortcuts({
316316
class="border-none"
317317
variant="button-secondary"
318318
:to="link.to"
319-
:aria-keyshortcuts="link.keyshortcut"
319+
:classicon="link.iconClass"
320320
>
321321
{{ link.label }}
322322
</LinkBase>

0 commit comments

Comments
 (0)