Skip to content

Commit

Permalink
Increased the respiratory rate (#7195)
Browse files Browse the repository at this point in the history
* inc rsp rate

* inc resp in critical care
  • Loading branch information
konavivekramakrishna authored Feb 21, 2024
1 parent 7d4f423 commit 38cbc29
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -280,13 +280,13 @@ let make = (~hemodynamicParameter, ~updateCB, ~id, ~consultationId) => {
<Slider
title={"Respiratory Rate (bpm)"}
start={"0"}
end={"70"}
end={"150"}
interval={"5"}
step={1.0}
value={Belt.Option.mapWithDefault(state.resp, "", string_of_int)}
setValue={s => send(SetResp(int_of_string(s)))}
getLabel={getStatus(12.0, "Low", 16.0, "High")}
hasError={ValidationUtils.isInputInRangeInt(0, 70, state.resp)}
hasError={ValidationUtils.isInputInRangeInt(0, 150, state.resp)}
/>
<div className="w-full">
<div className="mx-2">
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Patient/DailyRounds.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ export const DailyRounds = (props: any) => {
label="Respiratory Rate"
unit="bpm"
start={0}
end={50}
end={150}
step={1}
thresholds={[
{
Expand Down

0 comments on commit 38cbc29

Please sign in to comment.