Bring back the postinstall dialog

This commit is contained in:
Johannes Zellner
2025-04-23 15:32:42 +02:00
parent 5cdbfc0af7
commit 775a066a9a
5 changed files with 115 additions and 9 deletions
@@ -99,10 +99,11 @@ async function submit() {
if (manifest.value.id === PROXY_APP_ID) config.upstreamUri = upstreamUri.value;
const [error] = await appsModel.install(manifest.value, config);
const [error, result] = await appsModel.install(manifest.value, config);
if (!error) {
dialog.value.close();
localStorage['confirmPostInstall_' + result.id] = true;
return window.location.href = '#/apps';
}