]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/videos/recommendations/recommended-videos.component.html
switch margin-bottom rules to padding-bottom now used in miniature
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / recommendations / recommended-videos.component.html
index e4568c30952714fcd0f0be13a8cba50e48f4a021..a40266028996a414b8751db997aa079e2010802a 100644 (file)
       </div>
     </div>
 
-    <div *ngFor="let video of (videos$ | async); let i = index; let length = count">
-      <my-video-miniature [displayOptions]="displayOptions" [video]="video" [user]="user" (videoBlocked)="onVideoRemoved()" (videoRemoved)="onVideoRemoved()">
+    <ng-container *ngFor="let video of (videos$ | async); let i = index; let length = count">
+      <my-video-miniature 
+        [displayOptions]="displayOptions" [video]="video" [user]="user"
+        (videoBlocked)="onVideoRemoved()" (videoRemoved)="onVideoRemoved()">
       </my-video-miniature>
       
       <hr *ngIf="!playlist && i == 0 && length > 1" />
-    </div>
+    </ng-container>
   </ng-container>
 </div>