Select all button only selects 10 invoices in list view mode, not all visible #372

This commit is contained in:
Hillel Coren 2021-11-30 17:08:30 +02:00
parent e8c8e63bf3
commit f0cda7bf4d
1 changed files with 1 additions and 1 deletions

View File

@ -370,7 +370,7 @@ class _EntityListState extends State<EntityList> {
MaterialTapTargetSize.shrinkWrap, MaterialTapTargetSize.shrinkWrap,
onChanged: (value) { onChanged: (value) {
final endIndex = min( final endIndex = min(
entityList.length, state.prefState.rowsPerPage); entityList.length, kMaxEntitiesPerBulkAction);
final entities = entityList final entities = entityList
.sublist(0, endIndex) .sublist(0, endIndex)
.map<BaseEntity>( .map<BaseEntity>(