From f785dcf8a8eea794fdc6e68c2198ee4170dca996 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Tue, 6 Aug 2019 14:14:58 -0500 Subject: [PATCH] show page sizer --- .../src/modules/allListsTable/AllListsTable.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.tsx b/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.tsx index 9aaf3d782..4337afb74 100644 --- a/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.tsx +++ b/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.tsx @@ -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"] + }} > title="Name" dataIndex={nameof("name")}