mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
## Summary
Addresses issue #136942 - when editing exception items with numerous entries, flyout was not scrolling properly.
(cherry picked from commit 8e002ced89
)
Co-authored-by: Yara Tercero <yctercero@users.noreply.github.com>
This commit is contained in:
parent
2e81f4c1ef
commit
a909f16ea3
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