Skip to content

Commit

Permalink
[Security Solution][Exceptions] - Add pagination icon (elastic#131979)
Browse files Browse the repository at this point in the history
Addresses elastic#106212

Very minor UX inconsistency where the checkmark was not shown in exceptions pagination as it is in other paginated views. Now checkmark appears.
  • Loading branch information
yctercero authored and Esteban Beltran committed May 12, 2022
1 parent dd88f7d commit 7a289aa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ const ExceptionsViewerPaginationComponent = ({
const items = useMemo((): ReactElement[] => {
return pagination.pageSizeOptions.map((rows) => (
<EuiContextMenuItem
icon={rows === pagination.pageSize ? 'check' : 'empty'}
key={rows}
icon="empty"
onClick={() => {
onPaginationChange({
pagination: {
Expand Down

0 comments on commit 7a289aa

Please sign in to comment.