diff options
-rw-r--r-- | CHANGELOG.md | 6 | ||||
-rw-r--r-- | client/src/app/videos/+video-watch/comment/video-comment.component.ts | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index d28674c6d..9fe96ea79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md | |||
@@ -1,5 +1,11 @@ | |||
1 | # Changelog | 1 | # Changelog |
2 | 2 | ||
3 | ## v0.0.27-alpha | ||
4 | |||
5 | ### Bug fixes | ||
6 | |||
7 | * Fix comment reply highlighting | ||
8 | |||
3 | 9 | ||
4 | ## v0.0.26-alpha | 10 | ## v0.0.26-alpha |
5 | 11 | ||
diff --git a/client/src/app/videos/+video-watch/comment/video-comment.component.ts b/client/src/app/videos/+video-watch/comment/video-comment.component.ts index e7ba64b4d..cfcefed83 100644 --- a/client/src/app/videos/+video-watch/comment/video-comment.component.ts +++ b/client/src/app/videos/+video-watch/comment/video-comment.component.ts | |||
@@ -57,7 +57,7 @@ export class VideoCommentComponent implements OnInit, OnChanges { | |||
57 | this.threadCreated.emit(this.commentTree) | 57 | this.threadCreated.emit(this.commentTree) |
58 | } | 58 | } |
59 | 59 | ||
60 | this.commentTree.children.push({ | 60 | this.commentTree.children.unshift({ |
61 | comment: createdComment, | 61 | comment: createdComment, |
62 | children: [] | 62 | children: [] |
63 | }) | 63 | }) |