Skip to content

Commit

Permalink
[ML] Fix view link regression. (elastic#23604) (elastic#23607)
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 Oct 1, 2018
1 parent 3f03551 commit dfe08d1
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 dfe08d1

Please sign in to comment.