From 736b972bcba71618830cbd9264f69e6caf47e59f Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 12 Mar 2017 06:38:15 +0900 Subject: [PATCH] [Client] Fix bug --- src/web/app/desktop/tags/post-detail.tag | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/web/app/desktop/tags/post-detail.tag b/src/web/app/desktop/tags/post-detail.tag index 8c01c2391..69379317f 100644 --- a/src/web/app/desktop/tags/post-detail.tag +++ b/src/web/app/desktop/tags/post-detail.tag @@ -3,9 +3,9 @@
-
@@ -336,7 +336,7 @@ this.mixin('NotImplementedException'); this.fetching = true; - this.loadingContext = false; + this.contextFetching = false; this.context = null; this.post = null; @@ -438,14 +438,14 @@ }; this.loadContext = () => { - this.loadingContext = true; + this.contextFetching = true; // Fetch context this.api('posts/context', { post_id: this.p.reply_to_id }).then(context => { this.update({ - loadContext: false, + contextFetching: false, context: context.reverse() }); });