Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Reporting] Make "Run diagnostics" be a clickable link #142174

Merged
merged 3 commits into from
Oct 5, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
[Reporting] Make "Run diagnostics" be a clickable link
  • Loading branch information
tsullivan committed Sep 29, 2022
commit d0bab068455e62bf50fd3c7bff1aca52b539a8a2
Original file line number Diff line number Diff line change
@@ -16,6 +16,7 @@ import {
EuiFlyout,
EuiFlyoutBody,
EuiFlyoutHeader,
EuiMarkdownFormat,
EuiSpacer,
EuiSteps,
EuiText,
@@ -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}