Fix other videos width to avoid layout movement
[oweals/peertube.git] / client / src / app / videos / recommendations / recommended-videos.component.html
1 <div class="other-videos">
2   <ng-container *ngIf="hasVideos$ | async">
3     <div i18n class="title-page title-page-single">
4       Other videos
5     </div>
6
7     <div *ngFor="let video of (videos$ | async)">
8       <my-video-miniature [video]="video" [user]="user" (videoBlacklisted)="onVideoRemoved()" (videoRemoved)="onVideoRemoved()">
9       </my-video-miniature>
10     </div>
11   </ng-container>
12 </div>