Skip to content

Commit

Permalink
[8.8] [Synthetics] hide error panel for test run logs for lightweight…
Browse files Browse the repository at this point in the history
… monitors (#157791) (#157836)

# Backport

This will backport the following commits from `main` to `8.8`:
- [[Synthetics] hide error panel for test run logs for lightweight
monitors (#157791)](#157791)

<!--- Backport version: 8.9.7 -->

### Questions ?
Please refer to the [Backport tool
documentation](https://github.com/sqren/backport)

<!--BACKPORT [{"author":{"name":"Dominique
Clarke","email":"dominique.clarke@elastic.co"},"sourceCommit":{"committedDate":"2023-05-16T08:04:38Z","message":"[Synthetics]
hide error panel for test run logs for lightweight monitors
(#157791)","sha":"2dfaf21c64558c7300d7d6491d40992b5657b7d1","branchLabelMapping":{"^v8.9.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["bug","Team:uptime","release_note:skip","v8.8.0","v8.9.0"],"number":157791,"url":"https://github.com/elastic/kibana/pull/157791","mergeCommit":{"message":"[Synthetics]
hide error panel for test run logs for lightweight monitors
(#157791)","sha":"2dfaf21c64558c7300d7d6491d40992b5657b7d1"}},"sourceBranch":"main","suggestedTargetBranches":["8.8"],"targetPullRequestStates":[{"branch":"8.8","label":"v8.8.0","labelRegex":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"},{"branch":"main","label":"v8.9.0","labelRegex":"^v8.9.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/157791","number":157791,"mergeCommit":{"message":"[Synthetics]
hide error panel for test run logs for lightweight monitors
(#157791)","sha":"2dfaf21c64558c7300d7d6491d40992b5657b7d1"}}]}]
BACKPORT-->

Co-authored-by: Dominique Clarke <dominique.clarke@elastic.co>
  • Loading branch information
kibanamachine and dominiqueclarke authored May 16, 2023
1 parent 5e2ac54 commit e33d8f8
Showing 1 changed file with 12 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,18 @@ export function ErrorDetailsPage() {
stepsLoading={stepsLoading}
isErrorDetails={true}
/>
<EuiSpacer size="m" />
<EuiPanel hasShadow={false} hasBorder>
<TestRunErrorInfo
journeyDetails={data?.details}
showErrorTitle={false}
showErrorLogs={true}
/>
</EuiPanel>
{isBrowser && (
<>
<EuiSpacer size="m" />
<EuiPanel hasShadow={false} hasBorder>
<TestRunErrorInfo
journeyDetails={data?.details}
showErrorTitle={false}
showErrorLogs={true}
/>
</EuiPanel>
</>
)}
</EuiFlexItem>
<EuiFlexItem grow={1} style={{ height: 'fit-content' }}>
{data?.details?.journey && failedStep && (
Expand Down

0 comments on commit e33d8f8

Please sign in to comment.