mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
[Security Solution][Exceptions] - Fix scroll on edit exception flyout (#137492)
## Summary Addresses issue #136942 - when editing exception items with numerous entries, flyout was not scrolling properly.
This commit is contained in:
parent
af58ee866d
commit
8e002ced89
1 changed files with 3 additions and 3 deletions
|
@ -97,7 +97,7 @@ const FlyoutBodySection = styled.section`
|
|||
`}
|
||||
`;
|
||||
|
||||
const FlyoutCheckboxesSection = styled(EuiFlyoutBody)`
|
||||
const FlyoutCheckboxesSection = styled.section`
|
||||
overflow-y: inherit;
|
||||
height: auto;
|
||||
.euiFlyoutBody__overflowContent {
|
||||
|
@ -361,7 +361,7 @@ export const EditExceptionFlyout = memo(function EditExceptionFlyout({
|
|||
!isIndexPatternLoading &&
|
||||
!isRuleLoading &&
|
||||
!mlJobLoading && (
|
||||
<>
|
||||
<EuiFlyoutBody>
|
||||
<FlyoutBodySection className="builder-section">
|
||||
{isRuleEQLSequenceStatement && (
|
||||
<>
|
||||
|
@ -439,7 +439,7 @@ export const EditExceptionFlyout = memo(function EditExceptionFlyout({
|
|||
</>
|
||||
)}
|
||||
</FlyoutCheckboxesSection>
|
||||
</>
|
||||
</EuiFlyoutBody>
|
||||
)}
|
||||
|
||||
<EuiFlyoutFooter>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue