Skip to content

Commit

Permalink
[APM] Add title in apm settings callout (elastic#145857)
Browse files Browse the repository at this point in the history
  • Loading branch information
kpatticha committed Nov 21, 2022
1 parent e1c4607 commit c528ec1
Showing 1 changed file with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,12 @@ export function GeneralSettings() {
return (
<>
<EuiCallOut
title={
title={i18n.translate('xpack.apm.apmSettings.callOutTitle', {
defaultMessage: 'Looking for all settings?',
})}
iconType="search"
>
<p>
<FormattedMessage
id="xpack.apm.apmSettings.kibanaLink"
defaultMessage="The full list of APM options can be found in {link}"
Expand All @@ -82,15 +87,14 @@ export function GeneralSettings() {
})}
>
{i18n.translate('xpack.apm.apmSettings.kibanaLink.label', {
defaultMessage: 'Kibana advanced settings',
defaultMessage: 'Kibana advanced settings.',
})}
</EuiLink>
),
}}
/>
}
iconType="iInCircle"
/>
</p>
</EuiCallOut>
<EuiSpacer />
{apmSettingsKeys.map((settingKey) => {
const editableConfig = settingsEditableConfig[settingKey];
Expand Down

0 comments on commit c528ec1

Please sign in to comment.