Skip to content

Commit

Permalink
fix metrics external link
Browse files Browse the repository at this point in the history
  • Loading branch information
nickofthyme committed Nov 30, 2020
1 parent c965e8e commit ae25ef7
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 ae25ef7

Please sign in to comment.