Skip to content

Commit

Permalink
fix(ui): search artifact by uid in archived wf. Fixes #9968 (#10014)
Browse files Browse the repository at this point in the history
  • Loading branch information
tczhao committed Nov 11, 2022
1 parent 67bcdb5 commit e2e1f16
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,9 @@ export const ArchivedWorkflowDetails = ({history, location, match}: RouteCompone
archived={true}
/>
)}
{selectedArtifact && <ArtifactPanel workflow={workflow} artifact={selectedArtifact} artifactRepository={selectedTemplateArtifactRepo} />}
{selectedArtifact && (
<ArtifactPanel workflow={workflow} artifact={selectedArtifact} archived={true} artifactRepository={selectedTemplateArtifactRepo} />
)}
</div>
)}
</div>
Expand Down

0 comments on commit e2e1f16

Please sign in to comment.