Skip to content

Commit

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

Signed-off-by: Zadkiel Aharonian <hello@zadkiel.fr>
Signed-off-by: jmilic1 <70441727+jmilic1@users.noreply.github.com>
  • Loading branch information
aslafy-z authored and jmilic1 committed Nov 13, 2023
1 parent f7fd195 commit 7071016
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 7071016

Please sign in to comment.