Skip to content

Commit

Permalink
[Security Solution][Exceptions] - Add pagination icon (#131979)
Browse files Browse the repository at this point in the history
Addresses #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 May 11, 2022
1 parent d2a8ba7 commit 33dc231
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 33dc231

Please sign in to comment.