diff --git a/lib/ui/company_gateway/company_gateway_screen.dart b/lib/ui/company_gateway/company_gateway_screen.dart index da8a59319..b5edd7da4 100644 --- a/lib/ui/company_gateway/company_gateway_screen.dart +++ b/lib/ui/company_gateway/company_gateway_screen.dart @@ -88,6 +88,7 @@ class CompanyGatewayScreen extends StatelessWidget { bottomNavigationBar: AppBottomBar( sortFields: [], onSelectedSortField: null, + onlyList: true, entityType: EntityType.companyGateway, onSelectedCustom1: (value) => store.dispatch(FilterCompanyGatewaysByCustom1(value)), diff --git a/lib/ui/group/group_screen.dart b/lib/ui/group/group_screen.dart index 3b5b14d26..375bafec1 100644 --- a/lib/ui/group/group_screen.dart +++ b/lib/ui/group/group_screen.dart @@ -95,6 +95,7 @@ class GroupSettingsScreen extends StatelessWidget { body: GroupListBuilder(), bottomNavigationBar: AppBottomBar( entityType: EntityType.group, + onlyList: true, onSelectedSortField: (value) => store.dispatch(SortGroups(value)), customValues1: company.getCustomFieldValues(CustomFieldType.group1, excludeBlank: true), diff --git a/lib/ui/tax_rate/tax_rate_screen.dart b/lib/ui/tax_rate/tax_rate_screen.dart index 1e995f766..7aa8f6d7b 100644 --- a/lib/ui/tax_rate/tax_rate_screen.dart +++ b/lib/ui/tax_rate/tax_rate_screen.dart @@ -95,6 +95,7 @@ class TaxRateSettingsScreen extends StatelessWidget { body: TaxRateListBuilder(), bottomNavigationBar: AppBottomBar( entityType: EntityType.taxRate, + onlyList: true, onSelectedSortField: (value) => store.dispatch(SortTaxRates(value)), sortFields: [ TaxRateFields.updatedAt, diff --git a/lib/ui/user/user_screen.dart b/lib/ui/user/user_screen.dart index c10bb75c1..49b4072e8 100644 --- a/lib/ui/user/user_screen.dart +++ b/lib/ui/user/user_screen.dart @@ -96,6 +96,7 @@ class UserScreen extends StatelessWidget { body: UserListBuilder(), bottomNavigationBar: AppBottomBar( entityType: EntityType.user, + onlyList: true, onSelectedSortField: (value) => store.dispatch(SortUsers(value)), onSelectedCustom1: (value) => store.dispatch(FilterUsersByCustom1(value)),