Skip to content

Commit

Permalink
fix(ui): prevent app panel to open on app direct link click (#15040) (#…
Browse files Browse the repository at this point in the history
…16202)

Signed-off-by: Zadkiel Aharonian <[email protected]>
Co-authored-by: Zadkiel Aharonian <[email protected]>
  • Loading branch information
gcp-cherry-pick-bot[bot] and aslafy-z authored Nov 1, 2023
1 parent 6f7af53 commit 35ab139
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,10 @@ export const ApplicationResourceList = ({
<Consumer>
{ctx => (
<span className='application-details__external_link'>
<a href={ctx.baseHref + 'applications/' + res.namespace + '/' + res.name} title='Open application'>
<a
href={ctx.baseHref + 'applications/' + res.namespace + '/' + res.name}
onClick={e => e.stopPropagation()}
title='Open application'>
<i className='fa fa-external-link-alt' />
</a>
</span>
Expand Down

0 comments on commit 35ab139

Please sign in to comment.