Skip to content

Commit c284a1f

Browse files
authored
Merge pull request #1539 from devtron-labs/fix/timeline-wfrstatus
fix: the issue with timed out wfr status
2 parents a5c4bbf + 0798d95 commit c284a1f

File tree

1 file changed

+3
-0
lines changed
  • src/components/app/details/appDetails

1 file changed

+3
-0
lines changed

src/components/app/details/appDetails/utils.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -804,6 +804,9 @@ export const processDeploymentStatusDetailsData = (
804804
} else if (data?.wfrStatus === 'Progressing') {
805805
deploymentData.deploymentStatus = DEPLOYMENT_STATUS.INPROGRESS
806806
deploymentData.deploymentStatusText = 'In progress'
807+
} else if (data?.wfrStatus === 'TimedOut') {
808+
deploymentData.deploymentStatus = DEPLOYMENT_STATUS.TIMED_OUT
809+
deploymentData.deploymentStatusText = 'Timed out'
807810
}
808811
}
809812
return deploymentData

0 commit comments

Comments
 (0)