We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb03a3e commit c074840Copy full SHA for c074840
uSync.Migrations.Migrators/Core/NestedContentMigrator.cs
@@ -54,7 +54,8 @@ public override string GetEditorAlias(SyncMigrationDataTypeProperty dataTypeProp
54
foreach (var property in row.RawPropertyValues)
55
{
56
var contentTypeAlias = context.ContentTypes.GetReplacementAlias(row.ContentTypeAlias);
57
- var editorAlias = context.ContentTypes.GetEditorAliasByTypeAndProperty(contentTypeAlias, property.Key);
+ var propertyAlias = context.ContentTypes.GetReplacementAlias(property.Key);
58
+ var editorAlias = context.ContentTypes.GetEditorAliasByTypeAndProperty(contentTypeAlias, propertyAlias);
59
if (editorAlias == null) continue;
60
61
try
0 commit comments