diff --git a/src/modules/04_system/components/cardBackupRestore.vue b/src/modules/04_system/components/cardBackupRestore.vue index 56cb81a5..809e6191 100644 --- a/src/modules/04_system/components/cardBackupRestore.vue +++ b/src/modules/04_system/components/cardBackupRestore.vue @@ -146,12 +146,9 @@ function onRestore(name: string) { } onMounted(async () => { - const res = await fetchListBackup(); - - if (!!res) { - await backupRunningList(); - await restoreRunningList(); - } + await fetchListBackup(); + await backupRunningList(() => {}); + await restoreRunningList(() => {}); });