diff --git a/packages/app/src/components/quick-search/input.tsx b/packages/app/src/components/quick-search/input.tsx index 32dbe7f27b..e12bc523cc 100644 --- a/packages/app/src/components/quick-search/input.tsx +++ b/packages/app/src/components/quick-search/input.tsx @@ -58,6 +58,11 @@ export const Input = (props: { } }} onKeyDown={(e: React.KeyboardEvent) => { + if (e.key === 'a' && e.metaKey) { + e.stopPropagation(); + inputRef.current?.select(); + return; + } if (isComposition) { if ( e.key === 'ArrowDown' ||