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() }); });