mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
[APM] Agent configuration - EuiMarkdownFormat when rendering setting description (#141086)
* Used ReactMarkdown component to render setting description * [CI] Auto-commit changed files from 'node scripts/precommit_hook.js --ref HEAD~1..HEAD --fix' Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
3e73558f13
commit
45649ced6a
1 changed files with 2 additions and 1 deletions
|
@ -18,6 +18,7 @@ import {
|
|||
EuiIconTip,
|
||||
} from '@elastic/eui';
|
||||
import { i18n } from '@kbn/i18n';
|
||||
import { EuiMarkdownFormat } from '@elastic/eui';
|
||||
import { SettingDefinition } from '../../../../../../../common/agent_configuration/setting_definitions/types';
|
||||
import { validateSetting } from '../../../../../../../common/agent_configuration/setting_definitions';
|
||||
import {
|
||||
|
@ -163,7 +164,7 @@ export function SettingFormRow({
|
|||
}
|
||||
description={
|
||||
<>
|
||||
{setting.description}
|
||||
<EuiMarkdownFormat>{setting.description}</EuiMarkdownFormat>
|
||||
|
||||
{setting.defaultValue && (
|
||||
<>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue