Fix UI version display

This commit is contained in:
Matthias 2022-05-01 16:43:17 +02:00
parent c04e1a163f
commit 0202bcea96

View File

@ -194,8 +194,8 @@ export default defineComponent({
}
});
onMounted(() => {
settingsStore.loadUIVersion();
onMounted(async () => {
await settingsStore.loadUIVersion();
pingInterval.value = window.setInterval(botStore.pingAll, 60000);
botStore.allRefreshFull();
});