Select all button only selects 10 invoices in list view mode, not all visible #372
This commit is contained in:
parent
e8c8e63bf3
commit
f0cda7bf4d
|
|
@ -370,7 +370,7 @@ class _EntityListState extends State<EntityList> {
|
|||
MaterialTapTargetSize.shrinkWrap,
|
||||
onChanged: (value) {
|
||||
final endIndex = min(
|
||||
entityList.length, state.prefState.rowsPerPage);
|
||||
entityList.length, kMaxEntitiesPerBulkAction);
|
||||
final entities = entityList
|
||||
.sublist(0, endIndex)
|
||||
.map<BaseEntity>(
|
||||
|
|
|
|||
Loading…
Reference in New Issue