diff --git a/packages/builder/src/components/design/PropertiesPanel/ComponentSettingsSection.svelte b/packages/builder/src/components/design/PropertiesPanel/ComponentSettingsSection.svelte index 34d86c9a08..47df3dbf74 100644 --- a/packages/builder/src/components/design/PropertiesPanel/ComponentSettingsSection.svelte +++ b/packages/builder/src/components/design/PropertiesPanel/ComponentSettingsSection.svelte @@ -63,7 +63,14 @@ // If no specific value is depended upon, check if a value exists at all // for the dependent setting if (dependantValue == null) { - return !isEmpty(componentInstance[dependantSetting]) + const currentValue = componentInstance[dependantSetting] + if (currentValue === false) { + return false + } + if (currentValue === true) { + return true + } + return !isEmpty(currentValue) } // Otherwise check the value matches