Skip to content

Commit

Permalink
fix(patient): fixed applied filter badges not visible
Browse files Browse the repository at this point in the history
  • Loading branch information
aeswibon committed Dec 7, 2022
1 parent f89daef commit 5ea9e2b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Components/Patient/ManagePatients.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import {
ADMITTED_TO,
GENDER_TYPES,
TELEMEDICINE_ACTIONS,
KASP_STRING,
PatientCategoryTailwindClass,
} from "../../Common/constants";
import { make as SlideOver } from "../Common/SlideOver.gen";
Expand Down Expand Up @@ -369,7 +368,7 @@ export const PatientManager = (props: any) => {
)
);
};

console.log(qParams.last_consultation_admitted_bed_type_list);
return qParams.last_consultation_admitted_bed_type_list
.split(",")
.map((id: string) => {
Expand Down Expand Up @@ -851,7 +850,7 @@ export const PatientManager = (props: any) => {
},
]}
/>
{qParams.last_consultation_admitted_to_list &&
{qParams.last_consultation_admitted_bed_type_list &&
LastAdmittedToTypeBadges()}
</div>
<div>
Expand Down

0 comments on commit 5ea9e2b

Please sign in to comment.