aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-watch/comment/video-comments.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/videos/+video-watch/comment/video-comments.component.html')
-rw-r--r--client/src/app/videos/+video-watch/comment/video-comments.component.html14
1 files changed, 12 insertions, 2 deletions
diff --git a/client/src/app/videos/+video-watch/comment/video-comments.component.html b/client/src/app/videos/+video-watch/comment/video-comments.component.html
index e284eab0a..8f5c583d3 100644
--- a/client/src/app/videos/+video-watch/comment/video-comments.component.html
+++ b/client/src/app/videos/+video-watch/comment/video-comments.component.html
@@ -69,9 +69,19 @@
69 ></my-video-comment> 69 ></my-video-comment>
70 70
71 <div *ngIf="comment.totalReplies !== 0 && !threadComments[comment.id]" (click)="viewReplies(comment.id)" class="view-replies"> 71 <div *ngIf="comment.totalReplies !== 0 && !threadComments[comment.id]" (click)="viewReplies(comment.id)" class="view-replies">
72 <ng-container i18n>View all {{ comment.totalReplies }} replies</ng-container>
73
74 <span *ngIf="!threadLoading[comment.id]" class="glyphicon glyphicon-menu-down"></span> 72 <span *ngIf="!threadLoading[comment.id]" class="glyphicon glyphicon-menu-down"></span>
73
74 <ng-container *ngIf="comment.totalRepliesFromVideoAuthor > 0; then hasAuthorComments; else noAuthorComments"></ng-container>
75 <ng-template #hasAuthorComments>
76 <ng-container *ngIf="comment.totalReplies !== comment.totalRepliesFromVideoAuthor; else onlyAuthorComments" i18n>
77 View {{ comment.totalReplies }} replies from {{ video?.account?.displayName || 'the author' }} and others
78 </ng-container>
79 <ng-template i18n #onlyAuthorComments>
80 View {{ comment.totalReplies }} replies from {{ video?.account?.displayName || 'the author' }}
81 </ng-template>
82 </ng-template>
83 <ng-template i18n #noAuthorComments>View {{ comment.totalReplies }} replies</ng-template>
84
75 <my-small-loader class="comment-thread-loading" [loading]="threadLoading[comment.id]"></my-small-loader> 85 <my-small-loader class="comment-thread-loading" [loading]="threadLoading[comment.id]"></my-small-loader>
76 </div> 86 </div>
77 </div> 87 </div>