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:
parent
b6b4dfa3b2
commit
789bbb6e03
@ -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'],
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user