aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-watch/comment/video-comment.component.html
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-02-21 17:46:04 +0100
committerChocobozzz <me@florianbigard.com>2018-02-21 17:50:41 +0100
commit5b8072ee0ba95641da535309c6582330afb6e603 (patch)
tree6b74445181299005705b9a9ab7f2f883c20ff493 /client/src/app/videos/+video-watch/comment/video-comment.component.html
parentb10ba55aca84b4513bc641f8bc7f298cc0f02a9c (diff)
downloadPeerTube-5b8072ee0ba95641da535309c6582330afb6e603.tar.gz
PeerTube-5b8072ee0ba95641da535309c6582330afb6e603.tar.zst
PeerTube-5b8072ee0ba95641da535309c6582330afb6e603.zip
Fix comment highlight
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.html2
1 files changed, 1 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 e3049e15b..831ea0521 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
@@ -6,7 +6,7 @@
6 6
7 <div class="comment-account-date"> 7 <div class="comment-account-date">
8 <a target="_blank" [href]="comment.account.url" class="comment-account">{{ comment.by }}</a> 8 <a target="_blank" [href]="comment.account.url" class="comment-account">{{ comment.by }}</a>
9 <a [routerLink]="['/videos/watch', video.uuid, { 'commentId': comment.id }]" class="comment-date">{{ comment.createdAt | myFromNow }}</a> 9 <a [routerLink]="['/videos/watch', video.uuid, { 'threadId': comment.threadId }]" class="comment-date">{{ comment.createdAt | myFromNow }}</a>
10 </div> 10 </div>
11 <div class="comment-html" [innerHTML]="sanitizedCommentHTML"></div> 11 <div class="comment-html" [innerHTML]="sanitizedCommentHTML"></div>
12 12