mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
show page sizer
This commit is contained in:
parent
27e57e8b82
commit
f785dcf8a8
1 changed files with 6 additions and 1 deletions
|
|
@ -30,7 +30,12 @@ export class AllListsTable extends React.Component<{}, State> {
|
|||
rowKey={record => record.id.toString()}
|
||||
loading={this.state.data.length === 0 ? true : false}
|
||||
size="small"
|
||||
pagination={{ position: "top", size: "small" }} >
|
||||
pagination={{
|
||||
size: "small",
|
||||
defaultPageSize: 12,
|
||||
showSizeChanger: true,
|
||||
pageSizeOptions: ["6", "12", "2000"]
|
||||
}} >
|
||||
<Table.Column<List>
|
||||
title="Name"
|
||||
dataIndex={nameof<List>("name")}
|
||||
|
|
|
|||
Loading…
Reference in a new issue