From 5d4eef50e48efd5a66749e70870d299bc6a0cbee Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Wed, 11 Jun 2025 22:15:57 +0200 Subject: [PATCH] Clear backup task start error --- dashboard/src/components/BackupList.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/dashboard/src/components/BackupList.vue b/dashboard/src/components/BackupList.vue index 479380d4b..94d10fd12 100644 --- a/dashboard/src/components/BackupList.vue +++ b/dashboard/src/components/BackupList.vue @@ -131,6 +131,7 @@ const startBackupBusy = ref(false); async function onStartBackup() { startBackupBusy.value = true; + startBackupError.value = ''; const [error] = await backupsModel.create(); if (error) {