Skip to content

Commit 33dc231

Browse files
authored
[Security Solution][Exceptions] - Add pagination icon (#131979)
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.
1 parent d2a8ba7 commit 33dc231

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

x-pack/plugins/security_solution/public/common/components/exceptions/viewer/exceptions_pagination.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ const ExceptionsViewerPaginationComponent = ({
5353
const items = useMemo((): ReactElement[] => {
5454
return pagination.pageSizeOptions.map((rows) => (
5555
<EuiContextMenuItem
56+
icon={rows === pagination.pageSize ? 'check' : 'empty'}
5657
key={rows}
57-
icon="empty"
5858
onClick={() => {
5959
onPaginationChange({
6060
pagination: {

0 commit comments

Comments
 (0)