Skip to content

Commit

Permalink
feat(ui): Visualisation of the suspended CronWorkflows in the list. F…
Browse files Browse the repository at this point in the history
…ixes argoproj#4264 (argoproj#4446)

Signed-off-by: Nicolas van de Walle <[email protected]>
  • Loading branch information
Nicwalle committed Nov 3, 2020
1 parent 6016ebd commit dedf052
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,7 @@ export class CronWorkflowList extends BasePage<RouteComponentProps<any>, State>
className='row argo-table-list__row'
key={`${w.metadata.namespace}/${w.metadata.name}`}
to={uiUrl(`cron-workflows/${w.metadata.namespace}/${w.metadata.name}`)}>
<div className='columns small-1'>
<i className='fa fa-clock' />
</div>
<div className='columns small-1'>{w.spec.suspend ? <i className='fa fa-pause' /> : <i className='fa fa-clock' />}</div>
<div className='columns small-3'>{w.metadata.name}</div>
<div className='columns small-3'>{w.metadata.namespace}</div>
<div className='columns small-2'>{w.spec.schedule}</div>
Expand Down

0 comments on commit dedf052

Please sign in to comment.