mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
Merge pull request #3014 from GlenLowland/fix-avatar-size
Set fixed uploader avatar size on Watch Video page
This commit is contained in:
commit
857eb47893
1 changed files with 8 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue