mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2025-03-14 22:48:35 +03:00
- client: fix table size and add pagination
This commit is contained in:
parent
7a665ff8f0
commit
4751528d69
2 changed files with 4 additions and 2 deletions
|
@ -36,7 +36,8 @@ class Leases extends Component {
|
|||
Cell: this.cellWrap,
|
||||
},
|
||||
]}
|
||||
showPagination={false}
|
||||
pageSize={100}
|
||||
showPagination={true}
|
||||
noDataText={t('dhcp_leases_not_found')}
|
||||
minRows={6}
|
||||
className="-striped -highlight card-table-overflow"
|
||||
|
|
|
@ -82,7 +82,8 @@ class StaticLeases extends Component {
|
|||
},
|
||||
},
|
||||
]}
|
||||
showPagination={false}
|
||||
pageSize={100}
|
||||
showPagination={true}
|
||||
noDataText={t('dhcp_static_leases_not_found')}
|
||||
className="-striped -highlight card-table-overflow"
|
||||
minRows={6}
|
||||
|
|
Loading…
Add table
Reference in a new issue