I’m using Umbraco v 16.3.4 and I’ve installed Slimsy v6.0.4.
I’ve used the Image Cropper as the Image property for an element (the rowItem below) in the backoffice.
When using the media-item attribute in the tag, the code complains that it cannot convert type ImageCropperValue to MediaWithCrops (see the code segment below).
@if (rowItem.Image != null) {
<slimsy-picture media-item="@rowItem.Image" css-class="" alt="@rowItem.Title"></slimsy-picture>
}
Where am I going wrong with this? Have I chosen the wrong property type for my image?