mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
limit agent list total count to 10k (#135026)
This commit is contained in:
parent
69caa311bb
commit
d61253aa0e
1 changed files with 1 additions and 1 deletions
|
@ -626,7 +626,7 @@ export const AgentListPage: React.FunctionComponent<{}> = () => {
|
|||
pagination={{
|
||||
pageIndex: pagination.currentPage - 1,
|
||||
pageSize: pagination.pageSize,
|
||||
totalItemCount: totalAgents,
|
||||
totalItemCount: Math.min(totalAgents, SO_SEARCH_LIMIT),
|
||||
pageSizeOptions,
|
||||
}}
|
||||
isSelectable={true}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue