Skip to content

Commit

Permalink
fix: tooltip zindex overwrite toolbar (#7220)
Browse files Browse the repository at this point in the history
Signed-off-by: Duy Le <duyngoc834@gmail.com>
  • Loading branch information
duyngle authored Sep 29, 2021
1 parent 9730210 commit 6f5f7ff
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ export const ApplicationTiles = ({applications, syncApplication, refreshApplicat
</div>
<div className='columns small-9'>
<Tooltip
zIndex={4}
content={
<div>
{Object.keys(app.metadata.labels || {})
Expand Down Expand Up @@ -167,7 +168,7 @@ export const ApplicationTiles = ({applications, syncApplication, refreshApplicat
Repository:
</div>
<div className='columns small-9'>
<Tooltip content={app.spec.source.repoURL}>
<Tooltip content={app.spec.source.repoURL} zIndex={4}>
<span>{app.spec.source.repoURL}</span>
</Tooltip>
</div>
Expand Down

0 comments on commit 6f5f7ff

Please sign in to comment.