Update RecursiveFolder.svelte

This commit is contained in:
Classic298 2025-06-21 22:00:47 +02:00 committed by GitHub
parent c245a6316f
commit 02a4dec155
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -47,7 +47,6 @@
export let parentDragged = false; export let parentDragged = false;
let folderElement; let folderElement;
let folderMenuShow = false;
let draggedOver = false; let draggedOver = false;
let dragged = false; let dragged = false;
@ -374,17 +373,8 @@
exportHandler(); exportHandler();
}} }}
> >
<button <button class="p-0.5 dark:hover:bg-gray-850 hover:bg-gray-200 rounded-lg touch-auto" on:click={(e) => {}}>
class="p-0.5 dark:hover:bg-gray-850 hover:bg-gray-200 rounded-lg touch-auto" <EllipsisHorizontal className="size-4" strokeWidth="2.5" />
on:click={(e) => {
e.stopPropagation();
folderMenuShow = !folderMenuShow;
}}
on:pointerup={(e) => {
e.stopPropagation();
}}
>
<EllipsisHorizontal className="size-4" strokeWidth="2.5" />
</button> </button>
</FolderMenu> </FolderMenu>
</div> </div>