Skip to content

Commit

Permalink
Set pagination to 1000 in site list page
Browse files Browse the repository at this point in the history
  • Loading branch information
nomeguy committed Apr 23, 2024
1 parent 8057a3e commit d0750d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/SiteListPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ class SiteListPage extends React.Component {

return (
<div>
<Table columns={columns} dataSource={sites} rowKey="name" size="middle" bordered pagination={{pageSize: 100}}
<Table columns={columns} dataSource={sites} rowKey="name" size="middle" bordered pagination={{pageSize: 1000}}
title={() => (
<div>
{i18next.t("general:Sites")}&nbsp;&nbsp;&nbsp;&nbsp;
Expand Down

0 comments on commit d0750d2

Please sign in to comment.