Skip to content

Commit

Permalink
Fix agg select external link (elastic#85380)
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniil authored and sulemanof committed Dec 9, 2020
1 parent 6713443 commit e60d3f9
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,15 +77,15 @@ function DefaultEditorAggSelect({
}

const helpLink = value && aggHelpLink && (
<EuiLink href={aggHelpLink} target="_blank" rel="noopener">
<EuiText size="xs">
<EuiText size="xs">
<EuiLink href={aggHelpLink} target="_blank" rel="noopener">
<FormattedMessage
id="visDefaultEditor.aggSelect.helpLinkLabel"
defaultMessage="{aggTitle} help"
values={{ aggTitle: value ? value.title : '' }}
/>
</EuiText>
</EuiLink>
</EuiLink>
</EuiText>
);

const errors = aggError ? [aggError] : [];
Expand Down

0 comments on commit e60d3f9

Please sign in to comment.