Hello,
I have a slice that displays a loop of images such as:
<div class="d-flex flex-wrap justify-center">
<div
v-for="(item, i) in slice.items"
:key="`slice-item-${i}`"
class="mx-2 mb-5">
<img :src="item.logo.url" style="width: 150px" />
</div>
</div>
And my slice config :
> [
> {
> "variation": "default",
> "version": "sktwi1xtmkfgx8626",
> "items": [
> {
> "logo": {
> "dimensions": {
> "width": 200,
> "height": 500
> },
> "alt": null,
> "copyright": null,
> "url": "https://images.unsplash.com/photo-1471897488648-5eae4ac6686b"
> }
> }
> ],
My loop images display correctly on Chrome, FX, Android... but don't display on Apple devices (iOS, Mac...).
You can see the images (logos) in the second block of the page : https://dev.level.adngroup.com/
Do you have an idea ?
Thanks