Skip to content

Commit

Permalink
#1171 | Typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
1t5j0y committed May 1, 2024
1 parent 2da6dd0 commit 980aa17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dataEntryApp/services/RuleEvaluationService.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const getFormElementsStatuses = (entity, formElementGroup) => {
mapOfFormElementStatuses = applicableFormElements
.map(formElement => {
if (formElement.groupUuid) {
return getTheChildFormElementStatues(formElement, entity, entityName, mapOfBundleFormElementStatuses);
return getTheChildFormElementStatuses(formElement, entity, entityName, mapOfBundleFormElementStatuses);
}
return runFormElementStatusRule(formElement, entity, entityName, null, mapOfBundleFormElementStatuses);
})
Expand All @@ -57,7 +57,7 @@ export const getFormElementsStatuses = (entity, formElementGroup) => {
return [...mapOfFormElementStatuses.values()];
};

const getTheChildFormElementStatues = (childFormElement, entity, entityName, mapOfBundleFormElementStatuses) => {
const getTheChildFormElementStatuses = (childFormElement, entity, entityName, mapOfBundleFormElementStatuses) => {
const size = getRepeatableObservationSize(childFormElement, entity);
return _.range(size)
.map(questionGroupIndex => {
Expand Down

0 comments on commit 980aa17

Please sign in to comment.