Fix other videos width to avoid layout movement

pull/2207/head
Chocobozzz 2019-10-25 11:31:52 +02:00
parent 9ea6541488
commit 4586328858
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 6 additions and 3 deletions

View File

@ -1,9 +1,12 @@
<div *ngIf="hasVideos$ | async" class="other-videos">
<div class="other-videos">
<ng-container *ngIf="hasVideos$ | async">
<div i18n class="title-page title-page-single">
Other videos
Other videos
</div>
<div *ngFor="let video of (videos$ | async)">
<my-video-miniature [video]="video" [user]="user" (videoBlacklisted)="onVideoRemoved()" (videoRemoved)="onVideoRemoved()"></my-video-miniature>
<my-video-miniature [video]="video" [user]="user" (videoBlacklisted)="onVideoRemoved()" (videoRemoved)="onVideoRemoved()">
</my-video-miniature>
</div>
</ng-container>
</div>