diff --git a/lib/ui/app/tables/app_paginated_data_table.dart b/lib/ui/app/tables/app_paginated_data_table.dart index 99aaf1922..5a8e1a964 100644 --- a/lib/ui/app/tables/app_paginated_data_table.dart +++ b/lib/ui/app/tables/app_paginated_data_table.dart @@ -434,8 +434,7 @@ class AppPaginatedDataTableState extends State { math.min(_rowCount, _firstRowIndex + widget.rowsPerPage); if (widget.onRowsPerPageChanged != null) { final List availableRowsPerPage = widget.availableRowsPerPage - .where( - (int value) => value <= _rowCount || value == widget.rowsPerPage) + //.where((int value) => value <= _rowCount || value == widget.rowsPerPage) .map>((int value) { return DropdownMenuItem( value: value,