From 555e4f0e65915916f7bc3e16c66302f3d4d864e9 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Fri, 20 Feb 2026 22:17:10 +0100 Subject: [PATCH] Only set postinstall pending in localstorage if a message exists in the manifest --- 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 f9e9a97a3..e3b1ff00e 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; + if (manifest.value.postInstallMessage) localStorage['confirmPostInstall_' + result.id] = true; return window.location.href = `/#/app/${result.id}/info`; }