Skip to content

Commit

Permalink
[Security Solution][Detection Rules] Fixes rule details spacing on ru…
Browse files Browse the repository at this point in the history
…les with long queries (#93831) (#93860)

Co-authored-by: Davis Plumlee <[email protected]>
  • Loading branch information
kibanamachine and dplumlee authored Mar 6, 2021
1 parent 3257142 commit 2715532
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const StepAboutRuleToggleDetailsComponent: React.FC<StepPanelProps> = ({
)}
{stepData != null && stepDataDetails != null && (
<FlexGroupFullHeight gutterSize="xs" direction="column">
<EuiFlexItem grow={1} key="header">
<EuiFlexItem grow={false} key="header">
<HeaderSection title={i18n.ABOUT_TEXT}>
{!isEmpty(stepDataDetails.note) && stepDataDetails.note.trim() !== '' && (
<EuiButtonGroup
Expand All @@ -106,7 +106,7 @@ const StepAboutRuleToggleDetailsComponent: React.FC<StepPanelProps> = ({
)}
</HeaderSection>
</EuiFlexItem>
<EuiFlexItem grow={5} key="details">
<EuiFlexItem key="details">
{selectedToggleOption === 'details' ? (
<EuiResizeObserver data-test-subj="stepAboutDetailsContent" onResize={onResize}>
{(resizeRef) => (
Expand Down

0 comments on commit 2715532

Please sign in to comment.