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