Allow to redo the update if the app task failed

This commit is contained in:
Johannes Zellner
2025-07-24 11:35:50 +02:00
parent 511047874e
commit c3e746aa74
3 changed files with 23 additions and 6 deletions

View File

@@ -159,7 +159,7 @@ function isViewEnabled(view, errorState) {
return errorState === ISTATES.PENDING_SERVICES_CHANGE;
} else if (view === 'email') {
return errorState === ISTATES.PENDING_SERVICES_CHANGE;
} else if (view === 'update') {
} else if (view === 'updates') {
return errorState === ISTATES.PENDING_UPDATE;
}