aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-10-25 11:31:52 +0200
committerChocobozzz <me@florianbigard.com>2019-10-25 11:31:52 +0200
commit45863288582a788def282ec25d437b1795510315 (patch)
treeb3e1cfe1cf2361e43344db00690fcb2b75f454da /client/src
parent9ea6541488ae06c21cae3b9026728c52e11991cb (diff)
downloadPeerTube-45863288582a788def282ec25d437b1795510315.tar.gz
PeerTube-45863288582a788def282ec25d437b1795510315.tar.zst
PeerTube-45863288582a788def282ec25d437b1795510315.zip
Fix other videos width to avoid layout movement
Diffstat (limited to 'client/src')
-rw-r--r--client/src/app/videos/recommendations/recommended-videos.component.html9
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>