Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added SpO2 field in community log update for nurses #8907

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat: added spo2 field in community nurses section
  • Loading branch information
noufalrahim committed Nov 12, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 87d85459e8d3fd2605ad5f4c8cae52697712a763
48 changes: 0 additions & 48 deletions src/components/Patient/DailyRounds.tsx
Original file line number Diff line number Diff line change
@@ -813,30 +813,6 @@ export const DailyRounds = (props: any) => {
},
]}
/>
<RangeAutocompleteFormField
{...field("ventilator_spo2")}
unit="%"
start={0}
end={100}
step={1}
thresholds={[
{
value: 0,
className: "text-danger-500",
label: t("low"),
},
{
value: 90,
className: "text-primary-500",
label: t("normal"),
},
{
value: 100,
className: "text-danger-500",
label: t("high"),
},
]}
/>
</>
)}
{["NORMAL", "TELEMEDICINE", "DOCTORS_LOG"].includes(
@@ -900,30 +876,6 @@ export const DailyRounds = (props: any) => {
/>
</>
)}
<RangeAutocompleteFormField
{...field("ventilator_spo2")}
unit="%"
start={0}
end={100}
step={1}
thresholds={[
{
value: 0,
className: "text-danger-500",
label: t("low"),
},
{
value: 90,
className: "text-primary-500",
label: t("normal"),
},
{
value: 100,
className: "text-danger-500",
label: t("high"),
},
]}
/>
{state.form.rounds_type === "COMMUNITY_NURSES_LOG" && (
<div className="md:col-span-2">
<hr className="my-4 md:col-span-2" />
Loading