We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c965e8e commit ae25ef7Copy full SHA for ae25ef7
src/plugins/vis_default_editor/public/components/agg_select.tsx
@@ -77,15 +77,15 @@ function DefaultEditorAggSelect({
77
}
78
79
const helpLink = value && aggHelpLink && (
80
- <EuiLink href={aggHelpLink} target="_blank" rel="noopener">
81
- <EuiText size="xs">
+ <EuiText size="xs">
+ <EuiLink href={aggHelpLink} target="_blank" rel="noopener">
82
<FormattedMessage
83
id="visDefaultEditor.aggSelect.helpLinkLabel"
84
defaultMessage="{aggTitle} help"
85
values={{ aggTitle: value ? value.title : '' }}
86
/>
87
- </EuiText>
88
- </EuiLink>
+ </EuiLink>
+ </EuiText>
89
);
90
91
const errors = aggError ? [aggError] : [];
0 commit comments