diff --git a/webapp/components/comments/CommentList/index.vue b/webapp/components/comments/CommentList/index.vue index ab5916629..ee1370bea 100644 --- a/webapp/components/comments/CommentList/index.vue +++ b/webapp/components/comments/CommentList/index.vue @@ -47,7 +47,8 @@ export default { }, watch: { Post(post) { - this.comments = post[0].comments || [] + const [first] = post + this.comments = first && first.comments || [] }, }, apollo: {