Allow to reconfigure services if task fails

This commit is contained in:
Johannes Zellner
2025-07-23 17:18:26 +02:00
parent 1831caea08
commit 3460e6d513
3 changed files with 9 additions and 4 deletions

View File

@@ -49,8 +49,11 @@ const inputDialog = useTemplateRef('inputDialog');
function onSetView(newView) {
if (!isViewEnabled(newView, app.value.error?.details.installationState)) {
currentView.value = 'info';
window.location.hash = `/app/${id.value}/info`;
if (!currentView.value) {
currentView.value = 'info';
window.location.hash = `/app/${id.value}/info`;
}
return;
}