Skip to content

Commit

Permalink
Fixed rounds type changing for Scribe (ohcnetwork#8350)
Browse files Browse the repository at this point in the history
  • Loading branch information
shivankacker authored Aug 21, 2024
1 parent 3feade3 commit 617ad58
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Components/Patient/DailyRounds.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ export const DailyRounds = (props: any) => {
return <Loading />;
}

const roundTypes = [];
const roundTypes: { id: string; text: string }[] = [];

if (
["Doctor", "Staff", "DistrictAdmin", "StateAdmin"].includes(
Expand Down Expand Up @@ -598,11 +598,11 @@ export const DailyRounds = (props: any) => {
[
"investigations",
"icd11_diagnosis",
"additional_symptoms",
"prescriptions",
"prn_prescriptions",
].includes(f),
)
) &&
roundTypes.some((t) => t.id === "DOCTORS_LOG")
) {
rounds_type = "DOCTORS_LOG";
}
Expand Down

0 comments on commit 617ad58

Please sign in to comment.