diff --git a/components/editorControls/SettingControls/Pickers/BasePicker.cs b/components/editorControls/SettingControls/Pickers/BasePicker.cs index 478f46ad13..4a455e5e34 100644 --- a/components/editorControls/SettingControls/Pickers/BasePicker.cs +++ b/components/editorControls/SettingControls/Pickers/BasePicker.cs @@ -57,8 +57,10 @@ namespace umbraco.editorControls.SettingControls.Pickers ddl.Items.Insert(0, li); - - ddl.SelectedValue = _val; + if (string.IsNullOrEmpty(_val) && !string.IsNullOrEmpty(DefaultValue)) + ddl.SelectedValue = DefaultValue; + else + ddl.SelectedValue = _val; return ddl; }