アカウント切り替え後にインスタンス設定の表示値が変わらないのを修正 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

View File

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