diff --git a/lib/ui/app/tables/app_paginated_data_table.dart b/lib/ui/app/tables/app_paginated_data_table.dart index d811d6af7..96fcf6189 100644 --- a/lib/ui/app/tables/app_paginated_data_table.dart +++ b/lib/ui/app/tables/app_paginated_data_table.dart @@ -459,7 +459,7 @@ class AppPaginatedDataTableState extends State { Text( localizations.pageRowsInfoTitle( _firstRowIndex + 1, - _firstRowIndex + widget.rowsPerPage, + math.min(_rowCount, _firstRowIndex + widget.rowsPerPage), _rowCount, _rowCountApproximate, ),