Fixed incorrect BlockListPropertyValueConverter delivery api property value type

This commit is contained in:
Vitor Rodrigues
2023-08-26 17:56:16 +02:00
committed by Sebastiaan Janssen
parent 1bcfcf4e84
commit 4d80073547

View File

@@ -113,7 +113,7 @@ public class BlockListPropertyValueConverter : BlockPropertyValueConverterBase<B
/// <inheritdoc />
public Type GetDeliveryApiPropertyValueType(IPublishedPropertyType propertyType)
=> typeof(IEnumerable<ApiBlockListModel>);
=> typeof(ApiBlockListModel);
/// <inheritdoc />
public object? ConvertIntermediateToDeliveryApiObject(IPublishedElement owner, IPublishedPropertyType propertyType, PropertyCacheLevel referenceCacheLevel, object? inter, bool preview, bool expanding)