diff --git a/src/Umbraco.Infrastructure/PropertyEditors/MissingPropertyEditor.cs b/src/Umbraco.Infrastructure/PropertyEditors/MissingPropertyEditor.cs index e628a9ca95..902aab7cc7 100644 --- a/src/Umbraco.Infrastructure/PropertyEditors/MissingPropertyEditor.cs +++ b/src/Umbraco.Infrastructure/PropertyEditors/MissingPropertyEditor.cs @@ -8,7 +8,7 @@ namespace Umbraco.Core.PropertyEditors /// public class MissingPropertyEditor : IDataEditor { - public string Alias => "missing"; + public string Alias => "Umbraco.Missing"; public EditorType Type => EditorType.Nothing; diff --git a/src/Umbraco.Tests/Composing/TypeLoaderTests.cs b/src/Umbraco.Tests/Composing/TypeLoaderTests.cs index 21ce6aa8f8..d09811535f 100644 --- a/src/Umbraco.Tests/Composing/TypeLoaderTests.cs +++ b/src/Umbraco.Tests/Composing/TypeLoaderTests.cs @@ -275,7 +275,7 @@ AnotherContentFinder public void GetDataEditors() { var types = _typeLoader.GetDataEditors(); - Assert.AreEqual(38, types.Count()); + Assert.AreEqual(39, types.Count()); } ///