Skip to content

Commit

Permalink
[ML] Fix view link regression. (elastic#23604)
Browse files Browse the repository at this point in the history
Fixes a regression introduced in elastic#23494. The view link was broken because it expects a callback with an action instead of just the link.
  • Loading branch information
walterra committed Sep 28, 2018
1 parent 6e4ffe9 commit bc462c2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export function ExplorerChartsContainer({
iconSide="right"
iconType="popout"
size="xs"
onClick={() => getExploreSeriesLink(series)}
onClick={() => window.open(getExploreSeriesLink(series), '_blank')}
>
View
</EuiButtonEmpty>
Expand Down

0 comments on commit bc462c2

Please sign in to comment.