From 5fb8e0ef3147a7206a2709e982129091cffc731d Mon Sep 17 00:00:00 2001 From: Karishma Shukla Date: Sun, 21 Dec 2025 17:23:51 +0530 Subject: [PATCH 1/3] feat: -rm rowsPerPageOptions from TablePagination --- src/components/robot/RecordingsTable.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/components/robot/RecordingsTable.tsx b/src/components/robot/RecordingsTable.tsx index 704a7f97..46d73574 100644 --- a/src/components/robot/RecordingsTable.tsx +++ b/src/components/robot/RecordingsTable.tsx @@ -618,13 +618,12 @@ export const RecordingsTable = ({ )} From 74c830c50e03cef3a5b97dc99aa2a75545fd5145 Mon Sep 17 00:00:00 2001 From: Karishma Shukla Date: Sun, 21 Dec 2025 17:24:42 +0530 Subject: [PATCH 2/3] feat: -rm pagination options in RunsTable --- src/components/run/RunsTable.tsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/components/run/RunsTable.tsx b/src/components/run/RunsTable.tsx index 65e57049..527ff703 100644 --- a/src/components/run/RunsTable.tsx +++ b/src/components/run/RunsTable.tsx @@ -630,11 +630,10 @@ export const RunsTable: React.FC = ({ count={data.length} rowsPerPage={getPaginationState(robotMetaId).rowsPerPage} page={getPaginationState(robotMetaId).page} - onPageChange={(_, newPage) => handleChangePage(robotMetaId, newPage)} - onRowsPerPageChange={(event) => - handleChangeRowsPerPage(robotMetaId, +event.target.value) + onPageChange={(_, newPage) => + handleChangePage(robotMetaId, newPage) } - rowsPerPageOptions={[10, 25, 50, 100]} + rowsPerPageOptions={[]} /> @@ -654,4 +653,4 @@ export const RunsTable: React.FC = ({ )} ); -}; \ No newline at end of file +}; From 3ef36d28cad032d9c3b1c59b4e507f633e1b40d0 Mon Sep 17 00:00:00 2001 From: Karishma Shukla Date: Sun, 21 Dec 2025 17:25:12 +0530 Subject: [PATCH 3/3] feat: -rm rowsPerPageOptions from runs table --- src/components/run/RunsTable.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/run/RunsTable.tsx b/src/components/run/RunsTable.tsx index 527ff703..9af72d14 100644 --- a/src/components/run/RunsTable.tsx +++ b/src/components/run/RunsTable.tsx @@ -646,8 +646,7 @@ export const RunsTable: React.FC = ({ page={accordionPage} rowsPerPage={accordionsPerPage} onPageChange={handleAccordionPageChange} - onRowsPerPageChange={handleAccordionsPerPageChange} - rowsPerPageOptions={[10, 25, 50, 100]} + rowsPerPageOptions={[]} /> )}