Skip to content

Commit

Permalink
#1230 | Fix missed param change in #1185
Browse files Browse the repository at this point in the history
  • Loading branch information
1t5j0y committed Dec 19, 2023
1 parent bf1213e commit 7460542
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ class MyDashboardActions {
allIndividuals = methodMap.get(listType)(state.date.value, [], state.dueChecklistFilter)
}
else
allIndividuals = methodMap.get(listType)(state.date.value, filters, state.generalEncountersFilters, queryProgramEncounter, queryGeneralEncounter);
allIndividuals = methodMap.get(listType)(state.date.value, [], filters, state.generalEncountersFilters, queryProgramEncounter, queryGeneralEncounter);

const commonIndividuals = MyDashboardActions.commonIndividuals(allIndividuals, state.individualUUIDs, listType === 'total');
const totalToDisplay = listType === 'total' ? commonIndividuals : _.orderBy(commonIndividuals, ({visitInfo}) => visitInfo.sortingBy, 'desc');
Expand Down

0 comments on commit 7460542

Please sign in to comment.