From e217f18ba61b9450da0287847b0c6496a20fec5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?syuilo=E2=AD=90=EF=B8=8F?= Date: Wed, 1 Mar 2017 16:28:26 +0900 Subject: [PATCH] [Client] Fix bug --- src/web/app/desktop/tags/post-detail.tag | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/web/app/desktop/tags/post-detail.tag b/src/web/app/desktop/tags/post-detail.tag index cc5fbeed8..8c01c2391 100644 --- a/src/web/app/desktop/tags/post-detail.tag +++ b/src/web/app/desktop/tags/post-detail.tag @@ -337,7 +337,7 @@ this.fetching = true; this.loadingContext = false; - this.content = null; + this.context = null; this.post = null; this.on('mount', () => { @@ -446,7 +446,7 @@ }).then(context => { this.update({ loadContext: false, - content: context.reverse() + context: context.reverse() }); }); };