Handle resubmission state for app devices errors

This commit is contained in:
Johannes Zellner
2025-07-23 16:51:04 +02:00
parent 0b65f07960
commit 66650d6dd9
2 changed files with 13 additions and 10 deletions

View File

@@ -148,7 +148,7 @@ function isViewEnabled(view, errorState) {
} else if (view === 'repair') {
return errorState === ISTATES.PENDING_RESTART || errorState === ISTATES.PENDING_CONFIGURE || ISTATES.PENDING_INSTALL || ISTATES.PENDING_DEBUG;
} else if (view === 'resources') {
return errorState === ISTATES.PENDING_RESIZE;
return errorState === ISTATES.PENDING_RESIZE || errorState === ISTATES.PENDING_RECREATE_CONTAINER;
} else if (view === 'storage') {
return errorState === ISTATES.PENDING_DATA_DIR_MIGRATION || errorState === ISTATES.PENDING_RECREATE_CONTAINER;
} else if (view === 'services') {