Set busy state to false when restore fails

This commit is contained in:
Johannes Zellner
2025-07-22 16:24:46 +02:00
parent b021ff4e21
commit 504e18d9a7

View File

@@ -55,6 +55,7 @@ async function waitForRestore () {
if (!result.adminFqdn || result.restore.errorMessage) { // restore reset or errored. start over
formError.value.dnsWait = result.restore.errorMessage;
waitingForRestore.value = false;
busy.value = false;
} else { // proceed to dashboard
window.location.href = 'https://' + result.adminFqdn;
}