diff options
Diffstat (limited to 'client/src')
-rw-r--r-- | client/src/app/+videos/+video-watch/comment/video-comment.component.html | 4 |
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" |