mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-11 16:09:39 +00:00
fix css editor left panel broken bc bindable with default value (#6590)
This commit is contained in:
@@ -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(() => {
|
||||
|
||||
Reference in New Issue
Block a user