1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-02-17 10:07:29 -06:00

アカウント切り替え後にインスタンス設定の表示値が変わらないのを修正 Fix ()

* Fix 

* Use nextTick
This commit is contained in:
MeiMei 2020-06-07 14:01:40 +09:00 committed by GitHub
parent 99955f0af9
commit 93aba74463
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -494,7 +494,9 @@ export default Vue.extend({
...i,
token: token
}).then(() => {
location.reload();
this.$nextTick(() => {
location.reload();
});
});
});
},