aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-watch/recommendations
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2020-06-28 16:38:51 +0200
committerRigel Kent <sendmemail@rigelk.eu>2020-06-28 16:55:17 +0200
commitd473fd94ce2fd04bffc6cf6ee8f193db309c1d83 (patch)
tree4fb2570730d6ddfa52514e874c0ecb79ee8e944b /client/src/app/+videos/+video-watch/recommendations
parent4c9e9d2ee9899ba48b86eda18d44638a78587ac5 (diff)
downloadPeerTube-d473fd94ce2fd04bffc6cf6ee8f193db309c1d83.tar.gz
PeerTube-d473fd94ce2fd04bffc6cf6ee8f193db309c1d83.tar.zst
PeerTube-d473fd94ce2fd04bffc6cf6ee8f193db309c1d83.zip
allow muting from the miniature options
initial implementation with a listing refresh except on search results
Diffstat (limited to 'client/src/app/+videos/+video-watch/recommendations')
-rw-r--r--client/src/app/+videos/+video-watch/recommendations/recommended-videos.component.html2
1 files changed, 1 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 0467cabf5..1ab1b7343 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,7 @@
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" 17 [displayOptions]="displayOptions" [video]="video" [user]="userMiniature"
18 (videoBlocked)="onVideoRemoved()" (videoRemoved)="onVideoRemoved()"> 18 (videoBlocked)="onVideoRemoved()" (videoRemoved)="onVideoRemoved()" (videoAccountMuted)="onVideoRemoved()">
19 </my-video-miniature> 19 </my-video-miniature>
20 20
21 <hr *ngIf="!playlist && i == 0 && length > 1" /> 21 <hr *ngIf="!playlist && i == 0 && length > 1" />