diff --git a/dashboard/src/components/AppArchive.vue b/dashboard/src/components/AppArchive.vue
index 5dd6a931e..cc137a848 100644
--- a/dashboard/src/components/AppArchive.vue
+++ b/dashboard/src/components/AppArchive.vue
@@ -285,7 +285,7 @@ onMounted(async () => {
-
+
diff --git a/dashboard/src/components/BackupSchedule.vue b/dashboard/src/components/BackupSchedule.vue
index cf0f4ae98..ce535857a 100644
--- a/dashboard/src/components/BackupSchedule.vue
+++ b/dashboard/src/components/BackupSchedule.vue
@@ -103,7 +103,7 @@ const configureDays = ref([]);
const configureHours = ref([]);
const configureRetention = ref('');
const isConfigureValid = computed(() => {
- return configureDays.value.length && configureHours.value.length;
+ return !!configureDays.value.length && !!configureHours.value.length;
});
function onConfigure() {
diff --git a/dashboard/src/views/BackupsView.vue b/dashboard/src/views/BackupsView.vue
index 713d7b916..719222758 100644
--- a/dashboard/src/views/BackupsView.vue
+++ b/dashboard/src/views/BackupsView.vue
@@ -93,7 +93,7 @@ onMounted(async () => {
{{ mountOptions.host }}:{{ mountOptions.remoteDir }}{{ (config.prefix ? '/' : '') + config.prefix }}
- {{ config.bucket + (config.prefix ? '/' : '') + config.prefix }}
+ {{ config.bucket + (config.prefix ? '/' : '') + config.prefix }}
{{ config.region + ' ' + config.bucket + (config.prefix ? '/' : '') + config.prefix }}
{{ config.endpoint + ' ' + config.bucket + (config.prefix ? '/' : '') + config.prefix }}