From b6dcafcc2bb386a7f0fe5c960c33f2cd821b085f Mon Sep 17 00:00:00 2001 From: Matt Rider Date: Wed, 10 Jul 2019 18:52:23 -0300 Subject: [PATCH] Fix linting --- webapp/components/comments/CommentList/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: {