diff --git a/CHANGELOG.md b/CHANGELOG.md index d28674c6d..9fe96ea79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v0.0.27-alpha + +### Bug fixes + + * Fix comment reply highlighting + ## v0.0.26-alpha 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 { this.threadCreated.emit(this.commentTree) } - this.commentTree.children.push({ + this.commentTree.children.unshift({ comment: createdComment, children: [] })