mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[ML] Fix view link regression. (#23604)
Fixes a regression introduced in #23494. The view link was broken because it expects a callback with an action instead of just the link.
This commit is contained in:
parent
7f1ee07405
commit
34abe9762b
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ export function ExplorerChartsContainer({
|
|||
iconSide="right"
|
||||
iconType="popout"
|
||||
size="xs"
|
||||
onClick={() => getExploreSeriesLink(series)}
|
||||
onClick={() => window.open(getExploreSeriesLink(series), '_blank')}
|
||||
>
|
||||
View
|
||||
</EuiButtonEmpty>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue