Skip to content

Commit

Permalink
Merge branch '8.x' into backport/8.x/pr-194529
Browse files Browse the repository at this point in the history
  • Loading branch information
jgowdyelastic authored Oct 2, 2024
2 parents 35f7c7c + 3d2d667 commit 29d88f6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const CustomFieldsListComponent: React.FC<Props> = (props) => {
<EuiFlexItem grow={true}>
<EuiFlexGroup alignItems="center" gutterSize="s">
<EuiFlexItem grow={false}>
<EuiText>
<EuiText size="s">
<h4>{customField.label}</h4>
</EuiText>
</EuiFlexItem>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ const CustomFieldsComponent: React.FC<Props> = ({
title={<h3>{i18n.TITLE}</h3>}
description={<p>{i18n.DESCRIPTION}</p>}
data-test-subj="custom-fields-form-group"
css={{ alignItems: 'flex-start' }}
>
<EuiPanel paddingSize="s" color="subdued" hasBorder={false} hasShadow={false}>
{customFields.length ? (
Expand Down
1 change: 1 addition & 0 deletions x-pack/plugins/cases/public/components/templates/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ const TemplatesComponent: React.FC<Props> = ({
}
description={<p>{i18n.TEMPLATE_DESCRIPTION}</p>}
data-test-subj="templates-form-group"
css={{ alignItems: 'flex-start' }}
>
<EuiPanel paddingSize="s" color="subdued" hasBorder={false} hasShadow={false}>
{templates.length ? (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const TemplatesListComponent: React.FC<Props> = (props) => {
<EuiFlexItem grow={true}>
<EuiFlexGroup alignItems="center" gutterSize="s">
<EuiFlexItem grow={false}>
<EuiText>
<EuiText size="s">
<h4>
<TruncatedText text={template.name} />
</h4>
Expand Down

0 comments on commit 29d88f6

Please sign in to comment.