From 3066656a1646ab79fcec004f20d91c80478a0e52 Mon Sep 17 00:00:00 2001 From: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Date: Thu, 1 Feb 2024 15:18:01 -0500 Subject: [PATCH] [8.12] [Fleet] Fix max agent for agent activity (#176081) (#176092) # Backport This will backport the following commits from `main` to `8.12`: - [[Fleet] Fix max agent for agent activity (#176081)](https://github.com/elastic/kibana/pull/176081) ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) Co-authored-by: Nicolas Chaulet --- .../agents/agent_list_page/components/agent_activity_flyout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/components/agent_activity_flyout.tsx b/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/components/agent_activity_flyout.tsx index d23358726c11e..d4c1129a08e28 100644 --- a/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/components/agent_activity_flyout.tsx +++ b/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/components/agent_activity_flyout.tsx @@ -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;