mirror of
https://github.com/argoproj/argo-cd
synced 2026-05-24 09:50:08 +00:00
Issue #1915 - Deployment history metadata should be loaded only if deployment history panel is opened (#1916)
This commit is contained in:
parent
9cf744f435
commit
377fa5532a
1 changed files with 1 additions and 1 deletions
|
|
@ -268,7 +268,7 @@ export class ApplicationDetails extends React.Component<RouteComponentProps<{ na
|
|||
selectedResource={syncResourceKey}
|
||||
/>
|
||||
<SlidingPanel isShown={this.selectedRollbackDeploymentIndex > -1} onClose={() => this.setRollbackPanelVisible(-1)}>
|
||||
{<ApplicationDeploymentHistory
|
||||
{this.selectedRollbackDeploymentIndex > -1 && <ApplicationDeploymentHistory
|
||||
app={application}
|
||||
selectedRollbackDeploymentIndex={this.selectedRollbackDeploymentIndex}
|
||||
rollbackApp={(info) => this.rollbackApplication(info)}
|
||||
|
|
|
|||
Loading…
Reference in a new issue