[Fleet] Fix max agent for agent activity (#176081)

This commit is contained in:
Nicolas Chaulet 2024-02-01 13:59:34 -05:00 committed by GitHub
parent e896ae73b2
commit 9872b70a84
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -58,7 +58,7 @@ const FlyoutFooterWPadding = styled(EuiFlyoutFooter)`
padding: 16px 24px !important;
`;
const MAX_VIEW_AGENTS_COUNT = 2000;
const MAX_VIEW_AGENTS_COUNT = 1000;
export const AgentActivityFlyout: React.FunctionComponent<{
onClose: () => void;