Skip to content

Commit

Permalink
Merge branch 'develop' into rithviknishad/tests/symptoms-and-doctors-…
Browse files Browse the repository at this point in the history
…log-update
  • Loading branch information
khavinshankar authored May 28, 2024
2 parents 816bfe8 + fb9ba0e commit d81c1fd
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/Components/Patient/DailyRounds.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ import routes from "../../Redux/api";
import { Scribe } from "../Scribe/Scribe";
import { DAILY_ROUND_FORM_SCRIBE_DATA } from "../Scribe/formDetails";
import { DailyRoundsModel } from "./models";
import { EncounterSymptomsBuilder } from "../Symptoms/SymptomsBuilder";
import { FieldLabel } from "../Form/FormFields/FormField";
import { fetchEventTypeByName } from "../Facility/ConsultationDetails/Events/types";
import InvestigationBuilder from "../Common/prescription-builder/InvestigationBuilder";
import { FieldErrorText } from "../Form/FormFields/FormField";
Expand All @@ -45,6 +43,9 @@ import {
ConditionVerificationStatuses,
ConsultationDiagnosis,
} from "../Diagnosis/types";
import { EncounterSymptomsBuilder } from "../Symptoms/SymptomsBuilder";
import { FieldLabel } from "../Form/FormFields/FormField";

const Loading = lazy(() => import("../Common/Loading"));

const initForm: any = {
Expand Down Expand Up @@ -730,7 +731,8 @@ export const DailyRounds = (props: any) => {
) &&
(state.form.temperature == initialData.temperature ||
isNaN(state.form.temperature)) &&
state.form.rounds_type !== "VENTILATOR"
state.form.rounds_type !== "VENTILATOR" &&
state.form.rounds_type !== "DOCTORS_LOG"
}
onClick={(e) => handleSubmit(e)}
label={buttonText}
Expand Down

0 comments on commit d81c1fd

Please sign in to comment.