From 0c96c908005e5eb31ab93b2d0e98f1d53c1b0e12 Mon Sep 17 00:00:00 2001 From: Ashesh3 <3626859+Ashesh3@users.noreply.github.com> Date: Sat, 30 Dec 2023 22:04:35 +0530 Subject: [PATCH] Fix default blood pressure values in DailyRounds component --- src/Components/Patient/DailyRounds.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Components/Patient/DailyRounds.tsx b/src/Components/Patient/DailyRounds.tsx index 76f1e481bd1..21ec43a45ff 100644 --- a/src/Components/Patient/DailyRounds.tsx +++ b/src/Components/Patient/DailyRounds.tsx @@ -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,