From 763a718600b1520bc4a2a87ccb9b22e569180d3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?syuilo=E2=AD=90=EF=B8=8F?= Date: Wed, 1 Mar 2017 16:29:30 +0900 Subject: [PATCH] [Client] Fix bug --- src/web/app/mobile/tags/post-detail.tag | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/web/app/mobile/tags/post-detail.tag b/src/web/app/mobile/tags/post-detail.tag index 900bd228c9..9622dc264e 100644 --- a/src/web/app/mobile/tags/post-detail.tag +++ b/src/web/app/mobile/tags/post-detail.tag @@ -338,7 +338,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() }); }); };