aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-12-21 10:52:33 +0100
committerChocobozzz <me@florianbigard.com>2022-12-21 10:52:33 +0100
commit77f0c0e5dc197729a9255188c210e363b7d90be1 (patch)
tree21851883eab808295d05a638abb222f87535f76b /client/src/app
parentdfa4944f3401b5c1225e3235a016510c9f5a7c8a (diff)
downloadPeerTube-77f0c0e5dc197729a9255188c210e363b7d90be1.tar.gz
PeerTube-77f0c0e5dc197729a9255188c210e363b7d90be1.tar.zst
PeerTube-77f0c0e5dc197729a9255188c210e363b7d90be1.zip
Display video actions in homepage
Diffstat (limited to 'client/src/app')
-rw-r--r--client/src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.component.html2
-rw-r--r--client/src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.component.html b/client/src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.component.html
index 9b4930b6d..e383e0c75 100644
--- a/client/src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.component.html
+++ b/client/src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.component.html
@@ -1,6 +1,6 @@
1<my-video-miniature 1<my-video-miniature
2 *ngIf="video" 2 *ngIf="video"
3 [video]="video" [user]="getUser()" [displayAsRow]="false" 3 [video]="video" [user]="getUser()" [displayAsRow]="false"
4 [displayVideoActions]="false" [displayOptions]="displayOptions" 4 [displayVideoActions]="true" [displayOptions]="displayOptions"
5> 5>
6</my-video-miniature> 6</my-video-miniature>
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 15ef9d418..868bda387 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
@@ -4,7 +4,7 @@
4 <div class="video-wrapper" *ngFor="let video of videos"> 4 <div class="video-wrapper" *ngFor="let video of videos">
5 <my-video-miniature 5 <my-video-miniature
6 [video]="video" [user]="getUser()" [displayAsRow]="false" 6 [video]="video" [user]="getUser()" [displayAsRow]="false"
7 [displayVideoActions]="false" [displayOptions]="displayOptions" 7 [displayVideoActions]="true" [displayOptions]="displayOptions"
8 > 8 >
9 </my-video-miniature> 9 </my-video-miniature>
10 </div> 10 </div>