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

* Fix #6448

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