We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a5c4bbf + 0798d95 commit c284a1fCopy full SHA for c284a1f
src/components/app/details/appDetails/utils.tsx
@@ -804,6 +804,9 @@ export const processDeploymentStatusDetailsData = (
804
} else if (data?.wfrStatus === 'Progressing') {
805
deploymentData.deploymentStatus = DEPLOYMENT_STATUS.INPROGRESS
806
deploymentData.deploymentStatusText = 'In progress'
807
+ } else if (data?.wfrStatus === 'TimedOut') {
808
+ deploymentData.deploymentStatus = DEPLOYMENT_STATUS.TIMED_OUT
809
+ deploymentData.deploymentStatusText = 'Timed out'
810
}
811
812
return deploymentData
0 commit comments