aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-watch/comment/video-comment.component.html
diff options
context:
space:
mode:
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.html14
1 files changed, 10 insertions, 4 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 617d0fa41..002de57e4 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
@@ -20,10 +20,16 @@
20 <div *ngIf="highlightedComment === true" class="highlighted-comment" i18n>Highlighted comment</div> 20 <div *ngIf="highlightedComment === true" class="highlighted-comment" i18n>Highlighted comment</div>
21 21
22 <div class="comment-account-date"> 22 <div class="comment-account-date">
23 <a [href]="comment.account.url" target="_blank" rel="noopener noreferrer" class="comment-account"> 23 <div class="comment-account">
24 <span class="comment-account-name" [ngClass]="{ 'video-author': video.account.id === comment.account.id }">{{ comment.account.displayName }}</span> 24 <a
25 <span class="comment-account-fid ml-1">{{ comment.by }}</span> 25 [routerLink]="[ '/accounts', comment.by ]"
26 </a> 26 class="comment-account-name" [ngClass]="{ 'video-author': video.account.id === comment.account.id }"
27 >
28 {{ comment.account.displayName }}
29 </a>
30
31 <a [href]="comment.account.url" target="_blank" rel="noopener noreferrer" class="comment-account-fid ml-1">{{ comment.by }}</a>
32 </div>
27 <a [routerLink]="['/videos/watch', video.uuid, { 'threadId': comment.threadId }]" 33 <a [routerLink]="['/videos/watch', video.uuid, { 'threadId': comment.threadId }]"
28 class="comment-date" [title]="comment.createdAt">{{ comment.createdAt | myFromNow }}</a> 34 class="comment-date" [title]="comment.createdAt">{{ comment.createdAt | myFromNow }}</a>
29 </div> 35 </div>