Issue #1855 - Fix jumping app status panel (#1856)

This commit is contained in:
Alexander Matyushentsev 2019-07-02 09:28:49 -07:00 committed by GitHub
parent 92d3173077
commit 24f68835d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -301,12 +301,12 @@ export class ApplicationDetails extends React.Component<RouteComponentProps<{ na
iconClassName: 'fa fa-sync',
title: <span className='show-for-medium'>Sync</span>,
action: () => this.showDeploy('all'),
}, ...(application.status.operationState && [{
}, {
iconClassName: 'fa fa-info-circle',
title: <span className='show-for-medium'>Sync Status</span>,
action: () => this.setOperationStatusVisible(true),
disabled: !application.status.operationState,
}] || []), {
}, {
iconClassName: 'fa fa-history',
title: <span className='show-for-medium'>History and rollback</span>,
action: () => this.setRollbackPanelVisible(0),

View file

@ -11,6 +11,7 @@
box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
&__item {
min-height: 90px;
margin: 10px 0;
padding: 5px 20px;
font-size: .8em;