diff --git a/dashboard/src/components/SystemUpdate.vue b/dashboard/src/components/SystemUpdate.vue index 808e9f697..916fd005f 100644 --- a/dashboard/src/components/SystemUpdate.vue +++ b/dashboard/src/components/SystemUpdate.vue @@ -44,6 +44,7 @@ function prettyAutoUpdateSchedule(pattern) { const inputDialog = useTemplateRef('inputDialog'); const updateDialog = useTemplateRef('updateDialog'); +const ready = ref(false); const taskLogsMenu = ref([]); const apps = ref([]); const version = ref(''); @@ -265,6 +266,8 @@ onMounted(async () => { await refreshPendingUpdateInfo(); await refreshAutoupdatePattern(); await refreshTasks(); + + ready.value = true; }); @@ -340,7 +343,7 @@ onMounted(async () => {