diff --git a/src/Squidex.Core/Schemas/Field.cs b/src/Squidex.Core/Schemas/Field.cs index d657b0e53..967d79848 100644 --- a/src/Squidex.Core/Schemas/Field.cs +++ b/src/Squidex.Core/Schemas/Field.cs @@ -206,9 +206,9 @@ namespace Squidex.Core.Schemas { var jsonProperty = new JsonProperty { IsRequired = RawProperties.IsRequired, Type = JsonObjectType.Object }; - if (!string.IsNullOrWhiteSpace(RawProperties.Label)) + if (!string.IsNullOrWhiteSpace(RawProperties.Hints)) { - jsonProperty.Description = RawProperties.Label; + jsonProperty.Description = RawProperties.Hints; } else {