aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.html
diff options
context:
space:
mode:
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, 7 insertions, 12 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 501f35e04..a2fd2fe40 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,13 +1,8 @@
1<div class="root"> 1<div class="videos">
2 <h4 *ngIf="title">{{ title }}</h4> 2 <my-video-miniature
3 <div *ngIf="description" class="description">{{ description }}</div> 3 *ngFor="let video of videos"
4 4 [video]="video" [user]="getUser()" [displayAsRow]="false"
5 <div class="videos"> 5 [displayVideoActions]="false" [displayOptions]="displayOptions"
6 <my-video-miniature 6 >
7 *ngFor="let video of videos" 7 </my-video-miniature>
8 [video]="video" [user]="getUser()" [displayAsRow]="false"
9 [displayVideoActions]="false" [displayOptions]="displayOptions"
10 >
11 </my-video-miniature>
12 </div>
13</div> 8</div>