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-18 00:17:23 +0100
committerRigel Kent <sendmemail@rigelk.eu>2019-12-18 00:17:23 +0100
commitae05c9912555ef29e1fe14ba34ac9d8381547939 (patch)
treeafa79f52bcb6561c3903240f1fccafd8a78873c1 /client/src/app/videos/+video-watch/comment/video-comment.component.html
parentc8277d71391cca2a32ab0258956df1663fe6d301 (diff)
downloadPeerTube-ae05c9912555ef29e1fe14ba34ac9d8381547939.tar.gz
PeerTube-ae05c9912555ef29e1fe14ba34ac9d8381547939.tar.zst
PeerTube-ae05c9912555ef29e1fe14ba34ac9d8381547939.zip
comment name emphasis for video author
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.html5
1 files changed, 4 insertions, 1 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 df996533d..f53852385 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
@@ -19,7 +19,10 @@
19 <div *ngIf="highlightedComment === true" class="highlighted-comment" i18n>Highlighted comment</div> 19 <div *ngIf="highlightedComment === true" class="highlighted-comment" i18n>Highlighted comment</div>
20 20
21 <div class="comment-account-date"> 21 <div class="comment-account-date">
22 <a [href]="comment.account.url" target="_blank" rel="noopener noreferrer" class="comment-account">{{ comment.by }}</a> 22 <a [href]="comment.account.url" target="_blank" rel="noopener noreferrer"
23 class="comment-account"
24 [ngClass]="{ 'video-author': video.account.id === comment.account.id }"
25 >{{ comment.by }}</a>
23 <a [routerLink]="['/videos/watch', video.uuid, { 'threadId': comment.threadId }]" 26 <a [routerLink]="['/videos/watch', video.uuid, { 'threadId': comment.threadId }]"
24 class="comment-date">{{ comment.createdAt | myFromNow }}</a> 27 class="comment-date">{{ comment.createdAt | myFromNow }}</a>
25 </div> 28 </div>