fix: properly fix checkbox

This commit is contained in:
ThaUnknown 2025-09-13 22:40:14 +02:00
parent 65cff92b52
commit 12eb271873
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{
"name": "ui",
"version": "6.4.139",
"version": "6.4.140",
"license": "BUSL-1.1",
"private": true,
"packageManager": "pnpm@9.15.5",

View file

@ -14,6 +14,6 @@
}
</script>
<div class='w-full inset-0 h-full flex justify-center items-center' on:click|stopPropagation|stopImmediatePropagation on:click|self={check}>
<div class='w-full inset-0 h-full flex justify-center items-center' on:click|self={check} on:click|stopPropagation|stopImmediatePropagation>
<Checkbox bind:checked={$checked} {...$$restProps} class='mx-4' />
</div>