diff --git a/dashboard/src/components/BackupDialog.vue b/dashboard/src/components/BackupDialog.vue index 88deb7aa3..7b12a5764 100644 --- a/dashboard/src/components/BackupDialog.vue +++ b/dashboard/src/components/BackupDialog.vue @@ -18,6 +18,7 @@ const formError = ref({}); const busy = ref(false); const provider = ref(''); const oldProvider = ref(''); +const oldFormat = ref(''); const providerConfig = ref({ limits: {}, mountOptions: {}, @@ -161,6 +162,7 @@ defineExpose({ oldProvider.value = result.provider; provider.value = result.provider; providerConfig.value = result; + oldFormat.value = result.format; // ensure we have all required child objects if (!providerConfig.value.mountOptions) providerConfig.value.mountOptions = {}; @@ -197,7 +199,7 @@ defineExpose({
{{ formError.generic }}
-
Backups in the old storage location have to be removed manually.
+
{{ $t('backups.configureBackupStorage.formatChangeNote') }}
diff --git a/dashboard/src/components/BackupProviderForm.vue b/dashboard/src/components/BackupProviderForm.vue index 5acfc55c6..495e72ab5 100644 --- a/dashboard/src/components/BackupProviderForm.vue +++ b/dashboard/src/components/BackupProviderForm.vue @@ -277,7 +277,6 @@ onMounted(async () => { -
{{ $t('backups.configureBackupStorage.s3LikeNote') }}