Skip to content

Commit

Permalink
Fix UI version display
Browse files Browse the repository at this point in the history
  • Loading branch information
xmatthias committed May 1, 2022
1 parent c04e1a1 commit 0202bce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/layout/NavBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,8 @@ export default defineComponent({
}
});
onMounted(() => {
settingsStore.loadUIVersion();
onMounted(async () => {
await settingsStore.loadUIVersion();
pingInterval.value = window.setInterval(botStore.pingAll, 60000);
botStore.allRefreshFull();
});
Expand Down

0 comments on commit 0202bce

Please sign in to comment.