feat: Bulk delete local files and downloads, confirm dialogs

This commit is contained in:
Aleksi Lassila
2024-05-03 01:22:18 +03:00
parent d608c4b917
commit aa1168b6b2
18 changed files with 335 additions and 163 deletions

View File

@@ -27,12 +27,12 @@
const handleKeydown = (event: KeyboardEvent) => {
if (event.repeat) return;
if (event.key === 'Shift') showOverlay = !showOverlay;
if (event.key === 'Shift') showOverlay = true;
};
const handleKeyup = (event: KeyboardEvent) => {
if (event.repeat) return;
if (event.key === 'Shift') showOverlay = !showOverlay;
if (event.key === 'Shift') showOverlay = false;
};
onMount(() => {