aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/recommendations/recommended-videos.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/videos/recommendations/recommended-videos.component.html')
-rw-r--r--client/src/app/videos/recommendations/recommended-videos.component.html10
1 files changed, 4 insertions, 6 deletions
diff --git a/client/src/app/videos/recommendations/recommended-videos.component.html b/client/src/app/videos/recommendations/recommended-videos.component.html
index 7cfaffec2..73f9f0fe1 100644
--- a/client/src/app/videos/recommendations/recommended-videos.component.html
+++ b/client/src/app/videos/recommendations/recommended-videos.component.html
@@ -1,11 +1,9 @@
1<div class="other-videos"> 1<div *ngIf="hasVideos$ | async" class="other-videos">
2 <div i18n class="title-page title-page-single"> 2 <div i18n class="title-page title-page-single">
3 Other videos 3 Other videos
4 </div> 4 </div>
5 5
6 <ng-container *ngIf="hasVideos$ | async"> 6 <div *ngFor="let video of (videos$ | async)">
7 <div *ngFor="let video of (videos$ | async)"> 7 <my-video-miniature [video]="video" [user]="user"></my-video-miniature>
8 <my-video-miniature [video]="video" [user]="user"></my-video-miniature> 8 </div>
9 </div>
10 </ng-container>
11</div> 9</div>