feat: set pagination page size to 100 in PlayerList table

- Add pageSize configuration to table pagination
- Displays 100 items per page for better data visibility
This commit is contained in:
kyuuseiryuu 2026-02-10 22:23:17 +09:00
parent b6b4dfa3b2
commit 789bbb6e03

View File

@ -18,6 +18,7 @@ export const PlayerList: React.FC<Props> = props => {
rowKey={(e) => `${e.name}-${e.uid}`} rowKey={(e) => `${e.name}-${e.uid}`}
loading={props.loading} loading={props.loading}
pagination={{ pagination={{
pageSize: 100,
placement: ['topCenter', 'bottomCenter'], placement: ['topCenter', 'bottomCenter'],
}} }}
> >