summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
Diffstat (limited to 'src/client')
-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();
+ });
});
});
},