aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-watch
diff options
context:
space:
mode:
authorPoslovitch <poslovitch@bentobox.world>2021-04-24 21:17:27 +0000
committerChocobozzz <chocobozzz@cpy.re>2021-04-26 11:18:52 +0200
commit53c6b2b405c32f05d6f74041c64542e7b9f6178a (patch)
tree5aeba347036416d0070447c8f2982acd2f5e468f /client/src/app/+videos/+video-watch
parente771e82dfac5f8cd5462fecf6618f9b1fb314e30 (diff)
downloadPeerTube-53c6b2b405c32f05d6f74041c64542e7b9f6178a.tar.gz
PeerTube-53c6b2b405c32f05d6f74041c64542e7b9f6178a.tar.zst
PeerTube-53c6b2b405c32f05d6f74041c64542e7b9f6178a.zip
Added ability to reply to comments with remote interaction
Implements https://github.com/Chocobozzz/PeerTube/issues/3725
Diffstat (limited to 'client/src/app/+videos/+video-watch')
-rw-r--r--client/src/app/+videos/+video-watch/comment/video-comment.component.html4
1 files changed, 2 insertions, 2 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 4592c9c69..2b0739261 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
@@ -35,7 +35,7 @@
35 ></div> 35 ></div>
36 36
37 <div class="comment-actions"> 37 <div class="comment-actions">
38 <div *ngIf="isUserLoggedIn()" tabindex=0 (click)="onWantToReply()" class="comment-action-reply" i18n>Reply</div> 38 <div tabindex=0 (click)="onWantToReply()" class="comment-action-reply" i18n>Reply</div>
39 39
40 <my-user-moderation-dropdown 40 <my-user-moderation-dropdown
41 [prependActions]="prependModerationActions" tabindex=0 [buttonStyled]="false" 41 [prependActions]="prependModerationActions" tabindex=0 [buttonStyled]="false"
@@ -57,7 +57,7 @@
57 </ng-container> 57 </ng-container>
58 58
59 <my-video-comment-add 59 <my-video-comment-add
60 *ngIf="!comment.isDeleted && isUserLoggedIn() && inReplyToCommentId === comment.id" 60 *ngIf="!comment.isDeleted && inReplyToCommentId === comment.id"
61 [user]="user" 61 [user]="user"
62 [video]="video" 62 [video]="video"
63 [parentComment]="comment" 63 [parentComment]="comment"