mv pagination to top to make click more consistent

This commit is contained in:
Collin M. Barrett 2019-08-04 20:30:27 -05:00
parent c4cca5d126
commit 0e1a22ed7b

View file

@ -26,8 +26,8 @@ export class AllListsTable extends React.Component<{}, State> {
render() {
return (
<Table<List> dataSource={this.state.data} rowKey={record => record.id.toString()} loading={this.state.loading}>
<Table.Column<List> title="Name" dataIndex={nameof<List>("name")} />
<Table<List> pagination={{ position: "top" }} dataSource={this.state.data} rowKey={record => record.id.toString()} loading={this.state.loading}>
<Table.Column<List> title="Name" dataIndex={nameof<List>("name")} width={250} fixed="left" />
<Table.Column<List> title="Description" dataIndex={nameof<List>("description")} />
</Table>
);