Skip to content

Commit

Permalink
fix(OH2-251): Fix visit newPatient not being set correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveGT96 committed Nov 10, 2023
1 parent 845686c commit 13b5e16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/accessories/opds/filter/OpdFilterForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -311,11 +311,11 @@ export const OpdFilterForm: FC<IOpdFilterProps> = ({
const newPatientOptions = [
{
label: t("opd.all"),
value: "",
value: "A",
},
{
label: t("opd.newadmittance"),
value: "A",
value: "N",
},
{
label: t("opd.reattendance"),
Expand Down

0 comments on commit 13b5e16

Please sign in to comment.