aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-watch/comment/video-comment.component.html
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2019-12-27 10:11:10 +0100
committerChocobozzz <chocobozzz@framasoft.org>2019-12-27 10:11:10 +0100
commitedf1a4e5204189f7c352c007232c2463158aa6d7 (patch)
tree57603f8edfa6b7862ff200f7a70ceb523d4b0d34 /client/src/app/videos/+video-watch/comment/video-comment.component.html
parent822c7e610d19e3320519a6ae5c90c01db971f03f (diff)
downloadPeerTube-edf1a4e5204189f7c352c007232c2463158aa6d7.tar.gz
PeerTube-edf1a4e5204189f7c352c007232c2463158aa6d7.tar.zst
PeerTube-edf1a4e5204189f7c352c007232c2463158aa6d7.zip
Add user moderation dropdown to comments
Diffstat (limited to 'client/src/app/videos/+video-watch/comment/video-comment.component.html')
-rw-r--r--client/src/app/videos/+video-watch/comment/video-comment.component.html3
1 files changed, 3 insertions, 0 deletions
diff --git a/client/src/app/videos/+video-watch/comment/video-comment.component.html b/client/src/app/videos/+video-watch/comment/video-comment.component.html
index e26100346..d5aacf107 100644
--- a/client/src/app/videos/+video-watch/comment/video-comment.component.html
+++ b/client/src/app/videos/+video-watch/comment/video-comment.component.html
@@ -36,6 +36,9 @@
36 <div class="comment-actions"> 36 <div class="comment-actions">
37 <div *ngIf="isUserLoggedIn()" (click)="onWantToReply()" class="comment-action-reply" i18n>Reply</div> 37 <div *ngIf="isUserLoggedIn()" (click)="onWantToReply()" class="comment-action-reply" i18n>Reply</div>
38 <div *ngIf="isRemovableByUser()" (click)="onWantToDelete()" class="comment-action-delete" i18n>Delete</div> 38 <div *ngIf="isRemovableByUser()" (click)="onWantToDelete()" class="comment-action-delete" i18n>Delete</div>
39 <my-user-moderation-dropdown
40 buttonSize="small" [account]="commentAccount" [user]="commentUser" label="Options" placement="bottom-left auto"
41 ></my-user-moderation-dropdown>
39 </div> 42 </div>
40 </ng-container> 43 </ng-container>
41 44