Fix image lazy loading for Firefox (#3264)

This commit is contained in:
anewuser
2023-12-18 13:20:23 -03:00
committed by GitHub
parent 49d4e58f6e
commit 5781599e9b
7 changed files with 8 additions and 8 deletions

View File

@@ -9,7 +9,7 @@
<div class="mt-1 flex items-center justify-between">
<div>
<router-link class="link flex items-center gap-3" :to="playlist.uploaderUrl || '/'">
<img :src="playlist.uploaderAvatar" loading="lazy" class="rounded-full" />
<img loading="lazy" :src="playlist.uploaderAvatar" class="rounded-full" />
<strong v-text="playlist.uploader" />
</router-link>
</div>