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

Staging Release v24.39.4 #8577

Merged
merged 2 commits into from
Sep 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,6 @@
```sh
npm install
```
#### Run the following command to generate the `supportedBrowsers.ts` file:

```bash
npm run supported-browsers
```
This script just generates regex expression for matching the list of compatible browsers, so that we can show a warning notification for unsupported browsers.

#### 🏃 Run the app in development mode

Expand Down
2 changes: 1 addition & 1 deletion src/Common/constants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -759,7 +759,7 @@ export const NURSING_CARE_PROCEDURES = [
"restrain",
"chest_tube_care",
"tracheostomy_care",
"tracheostomy_change",
"tracheostomy_tube_change",
"stoma_care",
"catheter_care",
"catheter_change",
Expand Down
4 changes: 4 additions & 0 deletions src/Components/Patient/DailyRounds.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -444,6 +444,10 @@ export const DailyRounds = (props: any) => {
form["investigations_dirty"] = true;
}

if (event.name === "nutrition_route" && event.value !== "ORAL") {
form["oral_issue"] = undefined;
}

dispatch({ type: "set_form", form });
};

Expand Down
2 changes: 1 addition & 1 deletion src/Locale/en/LogUpdate.json
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
"NURSING_CARE_PROCEDURE__restrain": "Restrain",
"NURSING_CARE_PROCEDURE__chest_tube_care": "Chest Tube Care",
"NURSING_CARE_PROCEDURE__tracheostomy_care": "Tracheostomy Care",
"NURSING_CARE_PROCEDURE__tracheostomy_change": "Tracheostomy change ",
"NURSING_CARE_PROCEDURE__tracheostomy_tube_change": "Tracheostomy Tube Change",
"NURSING_CARE_PROCEDURE__stoma_care": "Stoma Care",
"NURSING_CARE_PROCEDURE__catheter_care": "Catheter Care",
"NURSING_CARE_PROCEDURE__catheter_change": "Catheter Change",
Expand Down
Loading