mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[Security Solution][Endpoint] Allow activity log scrolling on small screens (#103852)
This commit is contained in:
parent
fd7dc18f35
commit
0636c9bc82
1 changed files with 5 additions and 2 deletions
|
@ -31,6 +31,9 @@ import {
|
|||
getActivityLogRequestLoading,
|
||||
} from '../../store/selectors';
|
||||
|
||||
const StyledEuiFlexGroup = styled(EuiFlexGroup)`
|
||||
height: 85vh;
|
||||
`;
|
||||
const LoadMoreTrigger = styled.div`
|
||||
height: 6px;
|
||||
width: 100%;
|
||||
|
@ -79,7 +82,7 @@ export const EndpointActivityLog = memo(
|
|||
|
||||
return (
|
||||
<>
|
||||
<EuiFlexGroup direction="column" style={{ height: '85vh' }}>
|
||||
<StyledEuiFlexGroup direction="column" responsive={false}>
|
||||
{(activityLogLoaded && !activityLogSize) || activityLogError ? (
|
||||
<EuiFlexItem>
|
||||
<EuiEmptyPrompt
|
||||
|
@ -115,7 +118,7 @@ export const EndpointActivityLog = memo(
|
|||
</EuiFlexItem>
|
||||
</>
|
||||
)}
|
||||
</EuiFlexGroup>
|
||||
</StyledEuiFlexGroup>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue