File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
src/components/v2/appDetails Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -155,9 +155,10 @@ const AppDetailsComponent = ({
155155 ! appDetails ?. resourceTree ?. nodes ?. length &&
156156 appDetails ?. deploymentAppType === DeploymentAppTypes . HELM &&
157157 appDetails ?. helmReleaseStatus &&
158- ( appDetails ?. helmReleaseStatus . status ?. toLowerCase ( ) === DEPLOYMENT_STATUS . FAILED ||
159- appDetails ?. helmReleaseStatus . status ?. toLowerCase ( ) === DEPLOYMENT_STATUS . PROGRESSING ||
160- appDetails ?. helmReleaseStatus . status ?. toLowerCase ( ) === DEPLOYMENT_STATUS . UNKNOWN )
158+ appDetails . helmReleaseStatus . status &&
159+ ( appDetails . helmReleaseStatus . status . toLowerCase ( ) === DEPLOYMENT_STATUS . FAILED ||
160+ appDetails . helmReleaseStatus . status . toLowerCase ( ) === DEPLOYMENT_STATUS . PROGRESSING ||
161+ appDetails . helmReleaseStatus . status . toLowerCase ( ) === DEPLOYMENT_STATUS . UNKNOWN )
161162 ) {
162163 return (
163164 < ReleaseStatusEmptyState
You can’t perform that action at this time.
0 commit comments