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