Skip to content

Commit 4cd45c2

Browse files
author
Your Name
committed
Revert "bug: fixed Settings nav icon rendering in header"
This reverts commit 9b2c854.
1 parent b0a3548 commit 4cd45c2

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: 's',
35+
keyshortcut: ',',
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-
s: () => ({ name: 'settings' }),
204+
'c': () => ({ name: 'compare' }),
205+
',': () => ({ name: 'settings' }),
206206
})
207207
</script>
208208

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

0 commit comments

Comments
 (0)