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 () => {

- +
{{ prettyAutoUpdateSchedule(currentPattern) || '-' }} @@ -357,7 +360,7 @@ onMounted(async () => {
{{ stopError.generic }}
{{ updateCheckError.generic }}
-
+
@@ -380,12 +383,7 @@ onMounted(async () => { .changelog-container { overflow: auto; max-height: 20lh; - margin-bottom: 10px; padding-right: 0.5rem; /* space so scrollbar doesn’t overlap text */ } -.skip-backup { - padding-top: 10px; -} -