mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[Security Solution][Notes] - fix timeline notes tab missing vertial scroll (#195102)
This commit is contained in:
parent
820fa07dd3
commit
f38bbc6664
1 changed files with 6 additions and 1 deletions
|
@ -160,7 +160,12 @@ const NotesTabContentComponent: React.FC<NotesTabContentProps> = React.memo(({ t
|
|||
}, [timeline.description, timeline.updated, timeline.updatedBy]);
|
||||
|
||||
return (
|
||||
<EuiPanel>
|
||||
<EuiPanel
|
||||
css={css`
|
||||
height: 100%;
|
||||
overflow: auto;
|
||||
`}
|
||||
>
|
||||
<EuiFlexGroup direction="column">
|
||||
<EuiFlexItem grow={false}>
|
||||
<EuiTitle>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue