diff --git a/dashboard/src/components/BackupDialog.vue b/dashboard/src/components/BackupDialog.vue index 06251e88f..88deb7aa3 100644 --- a/dashboard/src/components/BackupDialog.vue +++ b/dashboard/src/components/BackupDialog.vue @@ -17,6 +17,7 @@ const config = ref({}); const formError = ref({}); const busy = ref(false); const provider = ref(''); +const oldProvider = ref(''); const providerConfig = ref({ limits: {}, mountOptions: {}, @@ -157,6 +158,7 @@ defineExpose({ config.value = result; formError.value = {}; busy.value = false; + oldProvider.value = result.provider; provider.value = result.provider; providerConfig.value = result; @@ -195,6 +197,7 @@ defineExpose({
{{ formError.generic }}
+
Backups in the old storage location have to be removed manually.
diff --git a/dashboard/src/components/BackupProviderForm.vue b/dashboard/src/components/BackupProviderForm.vue index f68ea1f36..5acfc55c6 100644 --- a/dashboard/src/components/BackupProviderForm.vue +++ b/dashboard/src/components/BackupProviderForm.vue @@ -117,7 +117,6 @@ onMounted(async () => { -