Skip to content

Commit

Permalink
[Synthetics] hide error panel for test run logs for lightweight monit…
Browse files Browse the repository at this point in the history
…ors (#157791)
  • Loading branch information
dominiqueclarke authored May 16, 2023
1 parent 8028230 commit 2dfaf21
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 2dfaf21

Please sign in to comment.