Skip to content

Commit

Permalink
correct i18n keys for daily rounds round type filter (#8566)
Browse files Browse the repository at this point in the history
  • Loading branch information
rithviknishad committed Sep 18, 2024
1 parent 383dfbc commit b9afa4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Components/Facility/Consultations/DailyRoundsFilter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ export default function DailyRoundsFilter(props: Props) {
<div className="relative flex flex-col gap-4 rounded-b-lg bg-white p-6">
<SelectFormField
{...field("rounds_type")}
label={t("Round Type")}
label={t("LOG_UPDATE_FIELD_LABEL__rounds_type")}
options={DailyRoundTypes}
placeholder={t("show_all")}
optionLabel={(o) => t(o)}
optionLabel={(o) => t(`ROUNDS_TYPE__${o}`)}
optionValue={(o) => o}
/>
<TextFormField
Expand Down

0 comments on commit b9afa4a

Please sign in to comment.