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 <[email protected]>
  • Loading branch information
aslafy-z authored and tesla59 committed Dec 16, 2023
1 parent 68c6fde commit 7eae027
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 7eae027

Please sign in to comment.