Skip to content

Commit

Permalink
Fix default blood pressure values in DailyRounds component
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashesh3 committed Dec 30, 2023
1 parent fc77784 commit 0c96c90
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Components/Patient/DailyRounds.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,11 @@ export const DailyRounds = (props: any) => {
meanArterialPressure(state.form.bp).toFixed(2)
),
}
: undefined,
: {
systolic: -1,
diastolic: -1,
mean: -1,
},
pulse: state.form.pulse,
resp: state.form.resp,
temperature: state.form.temperature,
Expand Down

0 comments on commit 0c96c90

Please sign in to comment.