Merge pull request #3014 from GlenLowland/fix-avatar-size

Set fixed uploader avatar size on Watch Video page
This commit is contained in:
Kavin 2023-10-11 19:05:30 +01:00 committed by GitHub
commit 857eb47893
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -72,7 +72,14 @@
<div class="flex flex-wrap gap-1">
<!-- Channel Image & Info -->
<div class="flex items-center">
<img :src="video.uploaderAvatar" alt="" loading="lazy" class="rounded-full" />
<img
height="48"
width="48"
:src="video.uploaderAvatar"
alt=""
loading="lazy"
class="rounded-full"
/>
<router-link v-if="video.uploaderUrl" class="link ml-1.5" :to="video.uploaderUrl">{{
video.uploader
}}</router-link>