aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-watch
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-05-05 09:44:24 +0200
committerChocobozzz <me@florianbigard.com>2021-05-05 09:44:24 +0200
commit06ec4bdd15cdd1e938ec1744784cd2993aed9809 (patch)
treeca5e30bb4049d72bcc4ab1c3837a681840efad5d /client/src/app/+videos/+video-watch
parenta6e37eebfbef9aef91e35173ed799afb6c4a288b (diff)
downloadPeerTube-06ec4bdd15cdd1e938ec1744784cd2993aed9809.tar.gz
PeerTube-06ec4bdd15cdd1e938ec1744784cd2993aed9809.tar.zst
PeerTube-06ec4bdd15cdd1e938ec1744784cd2993aed9809.zip
Fix miniature avatar size
Diffstat (limited to 'client/src/app/+videos/+video-watch')
-rw-r--r--client/src/app/+videos/+video-watch/recommendations/recommended-videos.component.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/client/src/app/+videos/+video-watch/recommendations/recommended-videos.component.html b/client/src/app/+videos/+video-watch/recommendations/recommended-videos.component.html
index e0e9f92e7..e1040fead 100644
--- a/client/src/app/+videos/+video-watch/recommendations/recommended-videos.component.html
+++ b/client/src/app/+videos/+video-watch/recommendations/recommended-videos.component.html
@@ -15,7 +15,9 @@
15 <ng-container *ngFor="let video of (videos$ | async); let i = index; let length = count"> 15 <ng-container *ngFor="let video of (videos$ | async); let i = index; let length = count">
16 <my-video-miniature 16 <my-video-miniature
17 [displayOptions]="displayOptions" [video]="video" [user]="userMiniature" [displayAsRow]="displayAsRow" 17 [displayOptions]="displayOptions" [video]="video" [user]="userMiniature" [displayAsRow]="displayAsRow"
18 (videoBlocked)="onVideoRemoved()" (videoRemoved)="onVideoRemoved()" (videoAccountMuted)="onVideoRemoved()"> 18 (videoBlocked)="onVideoRemoved()" (videoRemoved)="onVideoRemoved()" (videoAccountMuted)="onVideoRemoved()"
19 actorImageSize="32"
20 >
19 </my-video-miniature> 21 </my-video-miniature>
20 22
21 <hr *ngIf="!playlist && i == 0 && length > 1" /> 23 <hr *ngIf="!playlist && i == 0 && length > 1" />