summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMeiMei <30769358+mei23@users.noreply.github.com>2020-06-07 14:01:40 +0900
committerGitHub <noreply@github.com>2020-06-07 14:01:40 +0900
commit93aba74463a17e50dca3fd3ef9a2634fa3970f37 (patch)
treed767a7dc9f6638dd40e75f35f5f9735a77ea71c6 /src
parentUpdate .gitignore (#6459) (diff)
downloadmisskey-93aba74463a17e50dca3fd3ef9a2634fa3970f37.tar.gz
misskey-93aba74463a17e50dca3fd3ef9a2634fa3970f37.tar.bz2
misskey-93aba74463a17e50dca3fd3ef9a2634fa3970f37.zip
アカウント切り替え後にインスタンス設定の表示値が変わらないのを修正 Fix #6448 (#6454)
* Fix #6448 * Use nextTick
Diffstat (limited to 'src')
-rw-r--r--src/client/app.vue4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client/app.vue b/src/client/app.vue
index 4cb3c22e65..87e99eba97 100644
--- a/src/client/app.vue
+++ b/src/client/app.vue
@@ -494,7 +494,9 @@ export default Vue.extend({
...i,
token: token
}).then(() => {
- location.reload();
+ this.$nextTick(() => {
+ location.reload();
+ });
});
});
},