Skip to content

Commit

Permalink
fix(applications-table.tsx): adding "name" to Cluster (argoproj#4317)
Browse files Browse the repository at this point in the history
this corrects the "destination" of the table view of applications if they use
app.spec.destination.name instead of app.spec.destination.server
  • Loading branch information
igaskin authored Sep 15, 2020
1 parent c265733 commit 95eda65
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const ApplicationsTable = (props: {
<div className='row'>
<div className='show-for-xxlarge columns small-2'>Destination:</div>
<div className='columns small-12 xxlarge-10'>
<Cluster server={app.spec.destination.server} />/{app.spec.destination.namespace}
<Cluster server={app.spec.destination.server} name={app.spec.destination.name} />/{app.spec.destination.namespace}
</div>
</div>
</div>
Expand Down

0 comments on commit 95eda65

Please sign in to comment.