From 3a013511aa3a854a46c221573f24d7e37716af25 Mon Sep 17 00:00:00 2001 From: Matthew Northcott Date: Fri, 5 Aug 2022 13:37:46 +1200 Subject: [PATCH] Display 25 results in table by default --- frontend/src/components/steps/results/PlantList.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/steps/results/PlantList.js b/frontend/src/components/steps/results/PlantList.js index df8058c..78d7e20 100644 --- a/frontend/src/components/steps/results/PlantList.js +++ b/frontend/src/components/steps/results/PlantList.js @@ -84,7 +84,7 @@ TablePaginationActions.propTypes = { export default function PlantResultsTable(props) { const [page, setPage] = React.useState(0); - const [rowsPerPage, setRowsPerPage] = React.useState(5); + const [rowsPerPage, setRowsPerPage] = React.useState(25); // Avoid a layout jump when reaching the last page with empty rows. const emptyRows =