Skip to content

Commit

Permalink
#1137 - build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
petmongrels committed Apr 2, 2024
1 parent c019502 commit 4f438e8
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/dataEntryApp/services/FormElementService.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
import { Concept, FormElementGroup, ValidationResult, QuestionGroup } from "avni-models";
import { differenceWith, some, filter, flatMap, head, isEmpty, isNil, map, remove } from "lodash";
import { getFormElementsStatuses } from "./RuleEvaluationService";
import WebFormElement from "../../common/model/WebFormElement";

export default {
updateObservations(observationsHolder, formElement, value, childFormElement) {
if (!isNil(childFormElement) && !isNil(childFormElement.groupUuid)) {
observationsHolder.updateGroupQuestion(
formElement,
childFormElement,
value
);
observationsHolder.updateGroupQuestion(formElement, childFormElement, value);

const questionGroupTypeObservation = observationsHolder.findObservation(formElement.concept);
let questionGroup;
Expand Down

0 comments on commit 4f438e8

Please sign in to comment.