Skip to content

Commit

Permalink
Merge pull request #361 from RTIInternational/314_fix_irr_bug
Browse files Browse the repository at this point in the history
Prevent history table from truncating rows at 100
  • Loading branch information
AstridKery authored Sep 4, 2024
2 parents 776934f + 3d8236c commit e457b8d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions frontend/src/components/History/HistoryTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,10 @@ const HistoryTable = () => {
getSortedRowModel: getSortedRowModel(),
initialState: {
pagination: {
pageSize: 100
}
// setting arbitrary high number to avoid items being cut off
// actual page size is driven by data length
pageSize: 10000,
},
},
pageCount: historyData ? historyData.total_pages : 1,
onColumnVisibilityChange: setColumnVisibility,
Expand Down

0 comments on commit e457b8d

Please sign in to comment.