Update RecursiveFolder.svelte

This commit is contained in:
Classic298 2025-06-21 21:41:19 +02:00 committed by GitHub
parent 567d77bd48
commit 9783cbb084
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -373,7 +373,15 @@
exportHandler();
}}
>
<button class="p-0.5 dark:hover:bg-gray-850 hover:bg-gray-200 rounded-lg touch-auto" on:click={(e) => {}}>
<button
class="p-0.5 dark:hover:bg-gray-850 hover:bg-gray-200 rounded-lg touch-auto"
on:click={(e) => {
e.stopPropagation();
}}
on:pointerup={(e) => {
e.stopPropagation();
}}
>
<EllipsisHorizontal className="size-4" strokeWidth="2.5" />
</button>
</FolderMenu>