diff --git a/src-web/components/Sidebar.tsx b/src-web/components/Sidebar.tsx index 13b70010..f3c12a44 100644 --- a/src-web/components/Sidebar.tsx +++ b/src-web/components/Sidebar.tsx @@ -173,6 +173,7 @@ function Sidebar({ className }: { className?: string }) { const handleFilterKeyDown = useCallback( (e: KeyboardEvent) => { + e.stopPropagation(); // Don't trigger tree navigation hotkeys if (e.key === 'Escape') { e.preventDefault(); clearFilterText();