Change exposed PropertyGroupType enum from int to string values

This commit is contained in:
Ronald Barendse
2021-09-07 15:59:26 +02:00
parent 8ce4993cdc
commit 02310cb3ec
16 changed files with 29 additions and 29 deletions

View File

@@ -37,7 +37,7 @@ namespace Umbraco.Cms.Core.Models.Mapping
{
target.Id = source.Id;
target.Key = source.Key;
target.Type = (int)source.Type;
target.Type = source.Type.ToString();
target.Label = source.Name;
target.Alias = source.Alias;
target.IsActive = true;