From 8dc6e77ba076ca53dd30d4d3001937e5f0410c67 Mon Sep 17 00:00:00 2001 From: kolaente Date: Thu, 26 Feb 2026 23:39:21 +0100 Subject: [PATCH] refactor(shortcuts): update directive to use new shortcut module Change import in the v-shortcut directive from @github/hotkey to the new @/helpers/shortcut module. The install/uninstall API is identical. --- frontend/src/directives/shortcut.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/directives/shortcut.ts b/frontend/src/directives/shortcut.ts index cf8ef4509..8e7088480 100644 --- a/frontend/src/directives/shortcut.ts +++ b/frontend/src/directives/shortcut.ts @@ -1,5 +1,5 @@ import type {Directive} from 'vue' -import {install, uninstall} from '@github/hotkey' +import {install, uninstall} from '@/helpers/shortcut' const directive = >{ mounted(el, {value}) {