From bdd35fb02a73f02b57ae8f31d62f00a6307029dc Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Tue, 3 Feb 2026 11:30:26 +0100 Subject: [PATCH] Go to app configure view after installation started --- dashboard/src/components/AppInstallDialog.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/src/components/AppInstallDialog.vue b/dashboard/src/components/AppInstallDialog.vue index a45cb2a93..19dc9330b 100644 --- a/dashboard/src/components/AppInstallDialog.vue +++ b/dashboard/src/components/AppInstallDialog.vue @@ -162,7 +162,7 @@ async function onSubmit(overwriteDns) { if (!error) { dialog.value.close(); localStorage['confirmPostInstall_' + result.id] = true; - return window.location.href = '/#/apps'; + return window.location.href = `/#/app/${result.id}/info`; } busy.value = false;