diff options
author | Chocobozzz <me@florianbigard.com> | 2022-04-05 14:03:52 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2022-04-15 09:49:35 +0200 |
commit | 384ba8b77a8e4805c099f5ea12b41c2ca5776e26 (patch) | |
tree | 6b517033d9265d283677b85e0f57486e0e7fd8cf /client/src/app/+my-library/my-videos/my-videos.component.html | |
parent | b211106695bb82f6c32e53306081b5262c3d109d (diff) | |
download | PeerTube-384ba8b77a8e4805c099f5ea12b41c2ca5776e26.tar.gz PeerTube-384ba8b77a8e4805c099f5ea12b41c2ca5776e26.tar.zst PeerTube-384ba8b77a8e4805c099f5ea12b41c2ca5776e26.zip |
Support videos stats in client
Diffstat (limited to 'client/src/app/+my-library/my-videos/my-videos.component.html')
-rw-r--r-- | client/src/app/+my-library/my-videos/my-videos.component.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/client/src/app/+my-library/my-videos/my-videos.component.html b/client/src/app/+my-library/my-videos/my-videos.component.html index 9f81f0ad7..7f12e2c71 100644 --- a/client/src/app/+my-library/my-videos/my-videos.component.html +++ b/client/src/app/+my-library/my-videos/my-videos.component.html | |||
@@ -55,10 +55,12 @@ | |||
55 | <div class="action-button"> | 55 | <div class="action-button"> |
56 | <my-edit-button label [routerLink]="[ '/videos', 'update', video.uuid ]"></my-edit-button> | 56 | <my-edit-button label [routerLink]="[ '/videos', 'update', video.uuid ]"></my-edit-button> |
57 | 57 | ||
58 | <my-action-dropdown [actions]="videoActions" [entry]="{ video: video }"></my-action-dropdown> | 58 | <my-video-actions-dropdown |
59 | [video]="video" [displayOptions]="videoDropdownDisplayOptions" [moreActions]="moreVideoActions" | ||
60 | [buttonStyled]="true" buttonDirection="horizontal" (videoRemoved)="onVideoRemoved(video)" | ||
61 | ></my-video-actions-dropdown> | ||
59 | </div> | 62 | </div> |
60 | </ng-template> | 63 | </ng-template> |
61 | </my-videos-selection> | 64 | </my-videos-selection> |
62 | 65 | ||
63 | <my-video-change-ownership #videoChangeOwnershipModal></my-video-change-ownership> | 66 | <my-video-change-ownership #videoChangeOwnershipModal></my-video-change-ownership> |
64 | <my-live-stream-information #liveStreamInformationModal></my-live-stream-information> | ||