fix: single character shortcuts not working

This commit is contained in:
Andrew Bastin
2021-10-12 21:43:06 +05:30
parent b7ccb9a34c
commit 3b8cf4a60a
4 changed files with 12 additions and 47 deletions

View File

@@ -125,12 +125,6 @@ function defineJumpActions() {
defineActionHandler("navigation.jump.settings", () => {
router.push({ path: localePath("/settings") })
})
defineActionHandler("navigation.jump.back", () => {
router.go(-1)
})
defineActionHandler("navigation.jump.forward", () => {
router.go(1)
})
}
export default defineComponent({