Skip to content

Commit

Permalink
[APM] Errors: Fix panels styles (#102734) (#102748)
Browse files Browse the repository at this point in the history
Co-authored-by: Casper Hübertz <casper@elastic.co>
  • Loading branch information
kibanamachine and formgeist committed Jun 21, 2021
1 parent b702a61 commit 04ae473
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export function DetailView({ errorGroup, urlParams }: Props) {
const status = error.http?.response?.status_code;

return (
<EuiPanel>
<EuiPanel hasBorder={true}>
<HeaderContainer>
<EuiTitle size="s">
<h3>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,13 @@ export function ErrorGroupDetails({

return (
<>
<EuiSpacer size={'s'} />

<ErrorGroupHeader groupId={groupId} isUnhandled={isUnhandled} />

<EuiPanel>
<EuiSpacer size={'m'} />

<EuiPanel hasBorder={true}>
{showDetails && (
<Titles>
<EuiText>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export function ErrorGroupOverview({ serviceName }: ErrorGroupOverviewProps) {
return (
<EuiFlexGroup direction="column" gutterSize="s">
<EuiFlexItem>
<EuiPanel>
<EuiPanel hasBorder={true}>
<ErrorDistribution
distribution={errorDistributionData}
title={i18n.translate(
Expand All @@ -85,7 +85,7 @@ export function ErrorGroupOverview({ serviceName }: ErrorGroupOverviewProps) {
</EuiFlexItem>

<EuiFlexItem>
<EuiPanel>
<EuiPanel hasBorder={true}>
<EuiTitle size="xs">
<h3>
{i18n.translate(
Expand Down

0 comments on commit 04ae473

Please sign in to comment.