diff options
-rw-r--r-- | client/src/app/videos/recommendations/recommended-videos.component.html | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/client/src/app/videos/recommendations/recommended-videos.component.html b/client/src/app/videos/recommendations/recommended-videos.component.html index 1fb89f8b0..5b5951f99 100644 --- a/client/src/app/videos/recommendations/recommended-videos.component.html +++ b/client/src/app/videos/recommendations/recommended-videos.component.html | |||
@@ -1,9 +1,12 @@ | |||
1 | <div *ngIf="hasVideos$ | async" class="other-videos"> | 1 | <div class="other-videos"> |
2 | <ng-container *ngIf="hasVideos$ | async"> | ||
2 | <div i18n class="title-page title-page-single"> | 3 | <div i18n class="title-page title-page-single"> |
3 | Other videos | 4 | Other videos |
4 | </div> | 5 | </div> |
5 | 6 | ||
6 | <div *ngFor="let video of (videos$ | async)"> | 7 | <div *ngFor="let video of (videos$ | async)"> |
7 | <my-video-miniature [video]="video" [user]="user" (videoBlacklisted)="onVideoRemoved()" (videoRemoved)="onVideoRemoved()"></my-video-miniature> | 8 | <my-video-miniature [video]="video" [user]="user" (videoBlacklisted)="onVideoRemoved()" (videoRemoved)="onVideoRemoved()"> |
9 | </my-video-miniature> | ||
8 | </div> | 10 | </div> |
11 | </ng-container> | ||
9 | </div> | 12 | </div> |