summaryrefslogtreecommitdiff
path: root/src/web
diff options
context:
space:
mode:
authorsyuilo⭐️ <Syuilotan@yahoo.co.jp>2017-03-01 16:29:30 +0900
committerGitHub <noreply@github.com>2017-03-01 16:29:30 +0900
commit763a718600b1520bc4a2a87ccb9b22e569180d3a (patch)
tree18432e793f5b064555b03cced842f60ae84f3856 /src/web
parent[Client] Fix bug (diff)
downloadmisskey-763a718600b1520bc4a2a87ccb9b22e569180d3a.tar.gz
misskey-763a718600b1520bc4a2a87ccb9b22e569180d3a.tar.bz2
misskey-763a718600b1520bc4a2a87ccb9b22e569180d3a.zip
[Client] Fix bug
Diffstat (limited to 'src/web')
-rw-r--r--src/web/app/mobile/tags/post-detail.tag4
1 files 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()
});
});
};