From aa21cd43bdb42b95cb6551505d01ee594af508c7 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Thu, 15 Sep 2022 18:49:22 +0300 Subject: [PATCH] Correct dashboard number fields per row on mobile --- lib/redux/company/company_reducer.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/redux/company/company_reducer.dart b/lib/redux/company/company_reducer.dart index 283a5f7bd..3e742ea85 100644 --- a/lib/redux/company/company_reducer.dart +++ b/lib/redux/company/company_reducer.dart @@ -157,7 +157,7 @@ Reducer userCompanyEntityReducer = combineReducers([ return userCompany.rebuild((b) => b ..settings.dashboardFieldsPerRowDesktop = action.numberFieldsPerRowDesktop); - } else if (action.numberFieldsPerRowDesktop != null) { + } else if (action.numberFieldsPerRowMobile != null) { return userCompany.rebuild((b) => b ..settings.dashboardFieldsPerRowMobile = action.numberFieldsPerRowMobile);