Skip to content

Commit d55dc9d

Browse files
authored
fix: correct unexpected navigation behavior of Comma shortcut (#1367)
1 parent 54e08d0 commit d55dc9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/components/AppHeader.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ onKeyStroke(
180180
for (const link of desktopLinks.value) {
181181
if (link.to && link.keyshortcut && isKeyWithoutModifiers(e, link.keyshortcut)) {
182182
e.preventDefault()
183-
navigateTo(link.to.name)
183+
navigateTo(link.to)
184184
break
185185
}
186186
}

0 commit comments

Comments
 (0)