mirror of
https://github.com/aleksilassila/reiverr.git
synced 2026-04-20 03:53:31 +02:00
feat: Bulk delete local files and downloads, confirm dialogs
This commit is contained in:
@@ -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(() => {
|
||||
|
||||
Reference in New Issue
Block a user