Skip to content

Commit

Permalink
fix(application-tiles.tsx): moving helm/git icon to the left of app n…
Browse files Browse the repository at this point in the history
…ame (argoproj#3808)

was obtrustive in its current possition and truncating text

argoproj#3794
  • Loading branch information
igaskin authored Jun 19, 2020
1 parent 0486c72 commit 3126f4f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ export const ApplicationTiles = ({applications, syncApplication, refreshApplicat
<ApplicationURLs urls={app.status.summary.externalURLs} />
</div>
<div className='row'>
<div className='columns applications-list__title'>{app.metadata.name}</div>
<div className='columns small-9'>
<div className='columns small-3'>
<i className={'icon argo-icon-' + (app.spec.source.chart != null ? 'helm' : 'git')} />
</div>
<div className='columns applications-list__title'>{app.metadata.name}</div>
</div>
<div className='row'>
<div className='columns small-3'>Project:</div>
Expand Down

0 comments on commit 3126f4f

Please sign in to comment.