From dc0f0ac0a0e83917b9b452e3c9f0e2eedb31cba8 Mon Sep 17 00:00:00 2001 From: rithviknishad Date: Thu, 22 Aug 2024 16:39:53 +0530 Subject: [PATCH] Update range of diastolic BP field in detailed log update --- src/Components/LogUpdate/Sections/Vitals.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Components/LogUpdate/Sections/Vitals.tsx b/src/Components/LogUpdate/Sections/Vitals.tsx index 796575e4145..ae570f58bec 100644 --- a/src/Components/LogUpdate/Sections/Vitals.tsx +++ b/src/Components/LogUpdate/Sections/Vitals.tsx @@ -46,8 +46,8 @@ const Vitals = ({ log, onChange }: LogUpdateSectionProps) => { name="diastolic" onChange={handleBloodPressureChange} value={log.bp?.diastolic} - min={30} - max={180} + min={0} + max={250} step={1} unit="mmHg" valueDescriptions={rangeValueDescription({ low: 49, high: 89 })}