feat: incr limit for pagination

This commit is contained in:
Rohit
2025-01-23 20:08:38 +05:30
parent 86d0d2c4c3
commit 7289dadfcb

View File

@@ -262,7 +262,7 @@ export const RunsTable: React.FC<RunsTableProps> = ({
page={page}
onPageChange={handleChangePage}
onRowsPerPageChange={handleChangeRowsPerPage}
rowsPerPageOptions={[10, 25, 50]}
rowsPerPageOptions={[10, 25, 50, 100]}
/>
</React.Fragment>
);