Skip to content

Commit

Permalink
fix(ui): Drop ready from Completed container status (#14434) (#14629)
Browse files Browse the repository at this point in the history
Signed-off-by: schakrad <58915923+schakrad@users.noreply.github.com>
  • Loading branch information
schakrad authored Jul 21, 2023
1 parent 7bade3c commit 244b9e1
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 244b9e1

Please sign in to comment.