diff --git a/ui/src/pages/version/HistoryDetails.js b/ui/src/pages/version/HistoryDetails.js index 26726ee67..f732022f3 100644 --- a/ui/src/pages/version/HistoryDetails.js +++ b/ui/src/pages/version/HistoryDetails.js @@ -29,7 +29,9 @@ const DeploymentStatus = ({ if (status === "running" || status === "serving") { if ( deployment.id === deployedRevision.id && - (endpointStatus === "running" || endpointStatus === "serving") + (endpointStatus === "pending" || + endpointStatus === "running" || + endpointStatus === "serving") ) { return Deployed; } @@ -92,7 +94,6 @@ const RevisionPanel = ({ deployments, deploymentsLoaded, endpoint }) => { {deployment.id === deployedRevision.id && ( Current )} - {/* {JSON.stringify(deployment.id)} */} ), },