#4569 - Rename TinyMCE property editor alias (From TinyMCEv3)

#379 - Rename Label property editor alias (From NoEdit)
This commit is contained in:
Bjarke Berg
2019-02-15 11:42:29 +01:00
committed by Sebastiaan Janssen
parent a0896f168c
commit 8e29dbd494
19 changed files with 100 additions and 56 deletions

View File

@@ -735,7 +735,7 @@ namespace Umbraco.Core.Packaging
property.Element("Name").Value, dataTypeDefinitionId, property.Element("Type").Value.Trim());
//convert to a label!
dataTypeDefinition = _dataTypeService.GetByEditorAlias(Constants.PropertyEditors.Aliases.NoEdit).FirstOrDefault();
dataTypeDefinition = _dataTypeService.GetByEditorAlias(Constants.PropertyEditors.Aliases.Label).FirstOrDefault();
//if for some odd reason this isn't there then ignore
if (dataTypeDefinition == null) continue;
}