Update logic for determining whether to show empty state or not
This commit is contained in:
parent
bfe562c9ea
commit
9057b8e521
|
@ -76,7 +76,7 @@
|
|||
// coerced to booleans
|
||||
$: editable = !!definition?.editable
|
||||
$: hasChildren = !!definition?.hasChildren
|
||||
$: showEmptyState = !!definition?.showEmptyState
|
||||
$: showEmptyState = definition?.showEmptyState !== false
|
||||
|
||||
// Interactive components can be selected, dragged and highlighted inside
|
||||
// the builder preview
|
||||
|
|
Loading…
Reference in New Issue