diff --git a/components/editorControls/SettingControls/Pickers/Path.cs b/components/editorControls/SettingControls/Pickers/Path.cs index ae63867fef..5f4197b548 100644 --- a/components/editorControls/SettingControls/Pickers/Path.cs +++ b/components/editorControls/SettingControls/Pickers/Path.cs @@ -32,7 +32,11 @@ namespace umbraco.editorControls.SettingControls.Pickers pp.ID = sender.GetName().Replace(" ", "_"); - pp.Value = _val; + if (string.IsNullOrEmpty(_val) && !string.IsNullOrEmpty(DefaultValue)) + pp.Value = DefaultValue; + else + pp.Value = _val; + return pp; } }