diff --git a/dashboard/src/Index.vue b/dashboard/src/Index.vue index 695456384..bd47a3db4 100644 --- a/dashboard/src/Index.vue +++ b/dashboard/src/Index.vue @@ -56,6 +56,7 @@ const VIEWS = { const dashboardModel = DashboardModel.create(); const profileModel = ProfileModel.create(); +const ready = ref(false); const view = ref(''); const profile = ref({}); const subscription = ref({ @@ -137,6 +138,8 @@ onMounted(async () => { // TODO need to be reactive when name or icon changes window.document.title = result.cloudronName; document.getElementById('favicon').href = `${API_ORIGIN}/api/v1/cloudron/avatar?ts=${Date.now()}`; + + ready.value = true; }); @@ -145,38 +148,40 @@ onMounted(async () => {