Skip to content

Commit

Permalink
fixes 'hide moitors without patient' checkbox not changing state (#7528)
Browse files Browse the repository at this point in the history
  • Loading branch information
rithviknishad authored Apr 3, 2024
1 parent b9d0845 commit c610b79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Components/Facility/CentralNursingStation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export default function CentralNursingStation({ facilityId }: Props) {
value={JSON.parse(
qParams.hide_monitors_without_patient ?? true
)}
onChange={(e) => updateQuery({ [e.name]: e.value })}
onChange={(e) => updateQuery({ [e.name]: `${e.value}` })}
labelClassName="text-sm"
errorClassName="hidden"
/>
Expand Down

0 comments on commit c610b79

Please sign in to comment.