Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Discover] Fix links in helper callouts #130873

Merged
merged 4 commits into from
Apr 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export const DocumentExplorerCallout = () => {
</EuiButton>
</EuiFlexItem>
<EuiFlexItem grow={false}>
<EuiLink href={docLinks.links.discover.documentExplorer}>
<EuiLink href={docLinks.links.discover.documentExplorer} target="_blank">
<FormattedMessage
id="discover.docExplorerCallout.learnMore"
defaultMessage="Learn more"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const DocumentExplorerUpdateCallout = () => {
Learn more about the structure of your data with {fieldStatistics}."
values={{
fieldStatistics: (
<EuiLink href={docLinks.links.discover.fieldStatistics} external>
<EuiLink href={docLinks.links.discover.fieldStatistics} target="_blank">
<span css={semiBoldStyle}>
<FormattedMessage
id="discover.docExplorerUpdateCallout.fieldStatistics"
Expand All @@ -82,7 +82,7 @@ export const DocumentExplorerUpdateCallout = () => {
</EuiLink>
),
documentExplorer: (
<EuiLink href={docLinks.links.discover.documentExplorer} external>
<EuiLink href={docLinks.links.discover.documentExplorer} target="_blank">
<span css={semiBoldStyle}>
<FormattedMessage
id="discover.docExplorerUpdateCallout.documentExplorer"
Expand Down