aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.html
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-06-09 10:59:20 +0200
committerChocobozzz <me@florianbigard.com>2021-06-09 10:59:20 +0200
commit5d6395af72e01ba7c4393b485b7089bcb33e0155 (patch)
tree1f804edcb6bc43856a48081926b3d33d734db632 /client/src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.html
parent61cbafc1f80a33a895b54b15751a42e0d78af231 (diff)
downloadPeerTube-5d6395af72e01ba7c4393b485b7089bcb33e0155.tar.gz
PeerTube-5d6395af72e01ba7c4393b485b7089bcb33e0155.tar.zst
PeerTube-5d6395af72e01ba7c4393b485b7089bcb33e0155.zip
Add max rows to videos list
Diffstat (limited to 'client/src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.html')
-rw-r--r--client/src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.html19
1 files changed, 12 insertions, 7 deletions
diff --git a/client/src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.html b/client/src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.html
index a2fd2fe40..15ef9d418 100644
--- a/client/src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.html
+++ b/client/src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.html
@@ -1,8 +1,13 @@
1<div class="videos"> 1<div class="root">
2 <my-video-miniature 2 <div class="videos" [ngStyle]="limitRowsStyle()">
3 *ngFor="let video of videos" 3
4 [video]="video" [user]="getUser()" [displayAsRow]="false" 4 <div class="video-wrapper" *ngFor="let video of videos">
5 [displayVideoActions]="false" [displayOptions]="displayOptions" 5 <my-video-miniature
6 > 6 [video]="video" [user]="getUser()" [displayAsRow]="false"
7 </my-video-miniature> 7 [displayVideoActions]="false" [displayOptions]="displayOptions"
8 >
9 </my-video-miniature>
10 </div>
11
12 </div>
8</div> 13</div>