Skip to content

Commit

Permalink
[Reporting] Make "Run diagnostics" be a clickable link (elastic#142174)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsullivan authored and WafaaNasr committed Oct 11, 2022
1 parent 312d209 commit 9652999
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import {
EuiFlyout,
EuiFlyoutBody,
EuiFlyoutHeader,
EuiMarkdownFormat,
EuiSpacer,
EuiSteps,
EuiText,
Expand Down Expand Up @@ -178,7 +179,9 @@ export const ReportDiagnostic = ({ apiClient }: Props) => {
{help.length ? (
<Fragment>
<EuiCallOut color="danger" iconType="alert">
<p>{help.join('\n')}</p>
<p>
<EuiMarkdownFormat>{help.join('\n')}</EuiMarkdownFormat>
</p>
</EuiCallOut>
</Fragment>
) : null}
Expand Down

0 comments on commit 9652999

Please sign in to comment.