diff --git a/lib/ui/app/tables/entity_list.dart b/lib/ui/app/tables/entity_list.dart index 614412d32..6975915a1 100644 --- a/lib/ui/app/tables/entity_list.dart +++ b/lib/ui/app/tables/entity_list.dart @@ -292,6 +292,7 @@ class _EntityListState extends State { : 0, sortAscending: listUIState.sortAscending, rowsPerPage: state.prefState.rowsPerPage, + showFirstLastButtons: true, onPageChanged: (row) { _firstRowIndex = row; store.dispatch(UpdateLastHistory( diff --git a/lib/ui/reports/reports_screen.dart b/lib/ui/reports/reports_screen.dart index 7bd3933b0..6eccb9118 100644 --- a/lib/ui/reports/reports_screen.dart +++ b/lib/ui/reports/reports_screen.dart @@ -689,6 +689,7 @@ class _ReportDataTableState extends State { (index, ascending) => widget.viewModel .onReportSorted(sortedColumns[index], ascending)), source: dataTableSource, + showFirstLastButtons: true, ), ) ],