Skip to content

Commit

Permalink
fixed filter
Browse files Browse the repository at this point in the history
  • Loading branch information
shivankacker committed Jun 19, 2024
1 parent fe7e3ff commit afcee5a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Components/Facility/Consultations/DailyRoundsFilter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ export default function DailyRoundsFilter(props: Props) {
<SelectFormField
{...field("rounds_type")}
label={t("Round Type")}
options={DailyRoundTypes}
options={DailyRoundTypes.map((f) =>
f === "DOCTORS_LOG" ? "Progress Note" : f,
)}
placeholder={t("show_all")}
optionLabel={(o) => t(o)}
optionValue={(o) => o}
Expand Down

0 comments on commit afcee5a

Please sign in to comment.