From 93aba74463a17e50dca3fd3ef9a2634fa3970f37 Mon Sep 17 00:00:00 2001 From: MeiMei <30769358+mei23@users.noreply.github.com> Date: Sun, 7 Jun 2020 14:01:40 +0900 Subject: アカウント切り替え後にインスタンス設定の表示値が変わらないのを修正 Fix #6448 (#6454) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fix #6448 * Use nextTick --- src/client/app.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src') 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(); + }); }); }); }, -- cgit v1.2.3-freya