Skip to content

Commit

Permalink
Fix links to other apps
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Provost <provomat@amazon.com>
  • Loading branch information
BSFishy committed Sep 22, 2022
1 parent 1cc7931 commit 7ec7c5c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export const getTableColumns = (application: ApplicationStart, history: History)
// In case an error occurs i.e. the vis has wrong type, we render the vis but without the link
!error ? (
<EuiLink
href={`#${editApp ? application.getUrlForApp(editApp, { path: editUrl }) : editUrl}`}
href={editApp ? application.getUrlForApp(editApp, { path: editUrl }) : `#${editUrl}`}
data-test-subj={`visListingTitleLink-${title.split(' ').join('-')}`}
>
{field}
Expand Down

0 comments on commit 7ec7c5c

Please sign in to comment.