This commit is contained in:
Andy 2026-01-10 13:41:12 -07:00 committed by GitHub
commit 42d1807af4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1059,6 +1059,9 @@ const handleEmptyAreaClick = (e: MouseEvent) => {
if (target.closest("item") || target.closest(".item")) return; if (target.closest("item") || target.closest(".item")) return;
// Do not clear selection when clicking on context menu actions
if (target.closest(".context-menu")) return;
fileStore.selected = []; fileStore.selected = [];
}; };
</script> </script>