i am retrieving multiple images with a v-for loop and i get text popup for a second, that shouldn't render.

<ul class="pictures">
<li v-for="(image, index) in slide.pictures" :key="index">
<img :src="`/api/files/${slide.collectionId}/${slide.id}/` + image" width="100" height="100"/>
</li>
</ul>