Skip to content

Commit

Permalink
Changed Doctors Log to progress notes (#8039)
Browse files Browse the repository at this point in the history
* Changed Doctors Log to progress notes

* Update src/Components/Facility/Consultations/DailyRounds/LogUpdateCardAttribute.tsx

---------

Co-authored-by: Mohammed Nihal <[email protected]>
  • Loading branch information
shivankacker and nihal467 authored Jun 18, 2024
1 parent 160eaa7 commit bad8524
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ const LogUpdateCardAttribute = <T extends keyof DailyRoundsModel>({
<span className="text-sm font-semibold text-gray-700">
{(attributeValue as string) === "VENTILATOR"
? "CRITICAL CARE"
: (attributeValue as string)}
: (attributeValue as string) === "DOCTORS_LOG"
? "PROGRESS NOTE"
: (attributeValue as string)}
</span>
</div>
);
Expand Down

0 comments on commit bad8524

Please sign in to comment.