diff --git a/components/editorControls/SettingControls/DropDownList.cs b/components/editorControls/SettingControls/DropDownList.cs index 1a203c8fa2..0cadb42d5c 100644 --- a/components/editorControls/SettingControls/DropDownList.cs +++ b/components/editorControls/SettingControls/DropDownList.cs @@ -35,7 +35,10 @@ namespace umbraco.editorControls.SettingControls ddl.Items.Add(s); } - ddl.SelectedValue = _val; + if (string.IsNullOrEmpty(_val) && !string.IsNullOrEmpty(DefaultValue)) + ddl.SelectedValue = DefaultValue; + else + ddl.SelectedValue = _val; return ddl; }