Skip to content

Commit

Permalink
only display 10k max message *on last page*
Browse files Browse the repository at this point in the history
  • Loading branch information
pzl committed Nov 12, 2020
1 parent f4bd449 commit 1f5220b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ export const EndpointList = () => {
values={{ totalItemCount }}
/>
</EuiText>
{totalItemCount > MAX_PAGINATED_ITEM && (
{totalItemCount > MAX_PAGINATED_ITEM && (pageIndex + 1) * pageSize >= MAX_PAGINATED_ITEM && (
<EuiCallOut size="s" color="warning">
<FormattedMessage
id="xpack.securitySolution.endpoint.list.maxItem"
Expand Down

0 comments on commit 1f5220b

Please sign in to comment.