From 63f9e26b2e54a0fcec8a59ce2948079ccaa17fc1 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Tue, 6 May 2025 11:47:06 +0200 Subject: [PATCH] Enable provision status check in restore --- dashboard/src/views/RestoreView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/src/views/RestoreView.vue b/dashboard/src/views/RestoreView.vue index f8eacf52c..5795bf0b6 100644 --- a/dashboard/src/views/RestoreView.vue +++ b/dashboard/src/views/RestoreView.vue @@ -188,7 +188,7 @@ onMounted(async () => { const [error, result] = await provisionModel.status(); if (error) return console.error(error); - // if (redirectIfNeeded(result, 'restore')) return; // redirected to some other view... + if (redirectIfNeeded(result, 'restore')) return; // redirected to some other view... ready.value = true; });