mirror of
https://github.com/argoproj/argo-cd
synced 2026-05-24 01:38:43 +00:00
Issue 2848 - Application Deployment history panel shows incorrect info for recent releases (#2849)
This commit is contained in:
parent
9ffba90a73
commit
cc2b7b149e
1 changed files with 3 additions and 1 deletions
|
|
@ -67,7 +67,9 @@ export const ApplicationDeploymentHistory = ({
|
|||
source={{...recentDeployments[index].source, targetRevision: recentDeployments[index].revision}}
|
||||
/>
|
||||
{selectedRollbackDeploymentIndex === index ? (
|
||||
<DataLoader input={recentDeployments[index].source} load={src => services.repos.appDetails(src)}>
|
||||
<DataLoader
|
||||
input={{...recentDeployments[index].source, targetRevision: recentDeployments[index].revision}}
|
||||
load={src => services.repos.appDetails(src)}>
|
||||
{(details: models.RepoAppDetails) => (
|
||||
<div>
|
||||
<ApplicationParameters
|
||||
|
|
|
|||
Loading…
Reference in a new issue