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