Fix duplicate property alias validation

This commit is contained in:
Ronald Barendse
2021-08-25 11:16:00 +02:00
committed by GitHub
parent ea7985aec1
commit 8020c1f00d

View File

@@ -116,7 +116,7 @@ namespace Umbraco.Web.Models.ContentEditing
yield return new ValidationResult("Duplicate property aliases not allowed: " + duplicatePropertyAlias.Key, new[]
{
$"Groups[{lastPropertyIndex}].Properties[{propertyGroupIndex}].Alias"
$"Groups[{propertyGroupIndex}].Properties[{lastPropertyIndex}].Alias"
});
}