Skip to content

Commit

Permalink
fix(ui): Drop ready from Completed container status (argoproj#14434) (a…
Browse files Browse the repository at this point in the history
…rgoproj#14629)

Signed-off-by: schakrad <[email protected]>
  • Loading branch information
schakrad authored and xiaowu.zhu committed Aug 9, 2023
1 parent a534db7 commit 6179e47
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ const RenderContainerState = (props: {container: any}) => {
)}
<>
{' '}
It is <span className='application-node-info__container--highlight'>{props.container?.started ? 'started' : 'not started'}</span> and
<span className='application-node-info__container--highlight'>{props.container?.ready ? ' ready.' : ' not ready.'}</span>
It is <span className='application-node-info__container--highlight'>{props.container?.started ? 'started' : 'not started'}</span>
<span className='application-node-info__container--highlight'>{status === 'Completed' ? '.' : props.container?.ready ? ' and ready.' : ' and not ready.'}</span>
</>
<br />
{lastState && (
Expand Down

0 comments on commit 6179e47

Please sign in to comment.