diff --git a/packages/builder/src/components/design/PropertiesPanel/PropertyControls/OptionsEditor/OptionsEditor.svelte b/packages/builder/src/components/design/PropertiesPanel/PropertyControls/OptionsEditor/OptionsEditor.svelte index e486312fe9..aa3d8c69cf 100644 --- a/packages/builder/src/components/design/PropertiesPanel/PropertyControls/OptionsEditor/OptionsEditor.svelte +++ b/packages/builder/src/components/design/PropertiesPanel/PropertyControls/OptionsEditor/OptionsEditor.svelte @@ -12,7 +12,7 @@ const saveFilter = async () => { // Filter out null objects - tempValue = tempValue.filter(optionValue => optionValue.value) + tempValue = tempValue.filter(option => option.value && option.label) dispatch("change", tempValue) notifications.success("Options saved.") drawer.hide()