From b2fb853bf3f5627d11fd8b50566c341f9b644bc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20R=C3=B8mer=20Hesselbjerg?= Date: Tue, 3 Feb 2026 08:45:10 +0100 Subject: [PATCH] Global key listener for "?" works again --- app/app.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/app.vue b/app/app.vue index 1e2fc1af2..e8103f513 100644 --- a/app/app.vue +++ b/app/app.vue @@ -69,7 +69,8 @@ function handleGlobalKeydown(e: KeyboardEvent) { router.push('/search') } - if (isKeyWithoutModifiers(e, '?')) { + // For "?" we check the key property directly since it's usually combined with shift + if (e.key === '?') { e.preventDefault() showKbdHints.value = true }