Skip to content

Commit

Permalink
Merge pull request #3014 from GlenLowland/fix-avatar-size
Browse files Browse the repository at this point in the history
Set fixed uploader avatar size on Watch Video page
  • Loading branch information
FireMasterK authored Oct 11, 2023
2 parents 6852a4a + 7c90739 commit 857eb47
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/components/WatchVideo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 857eb47

Please sign in to comment.