fix css editor left panel broken bc bindable with default value (#6590)

This commit is contained in:
Diego Imbert
2025-09-11 16:18:23 +00:00
committed by GitHub
parent c4edf250f3
commit dd73a5fab4
@@ -29,7 +29,7 @@
wrapperClasses = '',
toggleClasses = '',
contentWrapperClasses = '',
isOpen = $bindable(false),
isOpen = $bindable(),
tooltip = undefined,
documentationLink = undefined,
subtitle = undefined,
@@ -45,7 +45,7 @@
})
$effect(() => {
dispatch('open', isOpen)
dispatch('open', isOpen ?? false)
})
onMount(() => {