fix(web): escape shortcut handling (#26096)

This commit is contained in:
Michel Heusschen
2026-02-11 18:55:28 +01:00
committed by GitHub
parent e54678e0d6
commit 913904f418
5 changed files with 17 additions and 119 deletions

View File

@@ -242,7 +242,6 @@
<svelte:document
use:shortcuts={[
{ shortcut: { key: 'Escape' }, onShortcut: onEscape },
{ shortcut: { ctrl: true, key: 'k' }, onShortcut: () => input?.select() },
{ shortcut: { ctrl: true, shift: true, key: 'k' }, onShortcut: onFilterClick },
]}