feat: -rm pagination options in RunsTable

This commit is contained in:
Karishma Shukla
2025-12-21 17:24:42 +05:30
committed by GitHub
parent 5fb8e0ef31
commit 74c830c50e

View File

@@ -630,11 +630,10 @@ export const RunsTable: React.FC<RunsTableProps> = ({
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={[]}
/>
</AccordionDetails>
</Accordion>
@@ -654,4 +653,4 @@ export const RunsTable: React.FC<RunsTableProps> = ({
)}
</React.Fragment>
);
};
};