mirror of
https://github.com/argoproj/argo-cd
synced 2026-05-24 09:50:08 +00:00
changes on hide-windows to ui/src/app/applications/components/application-status-panel/application-status-panel.tsx, (#2459)
This commit is contained in:
parent
138ec15834
commit
2e05e50fcb
1 changed files with 9 additions and 5 deletions
|
|
@ -117,11 +117,15 @@ export const ApplicationStatusPanel = ({application, showOperation, showConditio
|
|||
<React.Fragment>
|
||||
<div className='application-status-panel__item columns small-2' style={{position: 'relative'}}>
|
||||
<div className='application-status-panel__item-value'>
|
||||
<ApplicationSyncWindowStatusIcon project={application.spec.project} state={data}/>
|
||||
{tooltip('The aggregate state of sync windows for this app. ' +
|
||||
'Red: no syncs allowed. ' +
|
||||
'Yellow: manual syncs allowed. ' +
|
||||
'Green: all syncs allowed')}
|
||||
{data.assignedWindows && (
|
||||
<React.Fragment>
|
||||
<ApplicationSyncWindowStatusIcon project={application.spec.project} state={data}/>
|
||||
{tooltip('The aggregate state of sync windows for this app. ' +
|
||||
'Red: no syncs allowed. ' +
|
||||
'Yellow: manual syncs allowed. ' +
|
||||
'Green: all syncs allowed')}
|
||||
</React.Fragment>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
</React.Fragment>
|
||||
|
|
|
|||
Loading…
Reference in a new issue