diff --git a/src/Umbraco.Web/PropertyEditors/ValueConverters/NestedContentManyValueConverter.cs b/src/Umbraco.Web/PropertyEditors/ValueConverters/NestedContentManyValueConverter.cs index 72556f9d8b..b961048851 100644 --- a/src/Umbraco.Web/PropertyEditors/ValueConverters/NestedContentManyValueConverter.cs +++ b/src/Umbraco.Web/PropertyEditors/ValueConverters/NestedContentManyValueConverter.cs @@ -60,7 +60,7 @@ namespace Umbraco.Web.PropertyEditors.ValueConverters var configuration = propertyType.DataType.ConfigurationAs(); var contentTypes = configuration.ContentTypes; var elements = contentTypes.Length == 1 - ? PublishedModelFactory.CreateModelList(contentTypes[0].Key) + ? PublishedModelFactory.CreateModelList(contentTypes[0].Alias) : new List(); var value = (string)inter;