1
0
mirror of https://github.com/TeamPiped/Piped.git synced 2025-01-06 01:20:27 +05:30

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"> <div class="flex flex-wrap gap-1">
<!-- Channel Image & Info --> <!-- Channel Image & Info -->
<div class="flex items-center"> <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">{{ <router-link v-if="video.uploaderUrl" class="link ml-1.5" :to="video.uploaderUrl">{{
video.uploader video.uploader
}}</router-link> }}</router-link>