From 9e3db2839b4b1ca2d2ef3ec44cf177ce09cd0623 Mon Sep 17 00:00:00 2001 From: martinaCampoli Date: Wed, 25 Feb 2026 15:36:00 +0100 Subject: [PATCH 1/5] fix: update default pagination options and ensure visibility when table is not empty (PIN-9329-9341) --- src/features/pagination/components/Pagination.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/features/pagination/components/Pagination.tsx b/src/features/pagination/components/Pagination.tsx index 7989893..58bca43 100644 --- a/src/features/pagination/components/Pagination.tsx +++ b/src/features/pagination/components/Pagination.tsx @@ -10,7 +10,7 @@ import { } from '@mui/material' import type { InteropTheme } from '@/theme' -const defaultOptions = [10, 24, 36] +const defaultOptions = [12, 24, 36] export interface PaginationProps extends StackProps { totalPages: number pageNum: number @@ -56,7 +56,7 @@ export const Pagination: React.FC = ({ alignItems="center" {...stackProps} > - {rowPerPageOptions && ( + {rowPerPageOptions && totalPages > 0 && (