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

Production release v24.41.0; October week 1 #8734

Merged
merged 19 commits into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
d76d6d8
Added Asset Info Popover to Camera Feed in Consultation Page (#8615)
Jacobjeevan Sep 30, 2024
80ca084
Migrate `useDispatch` to `request` for exports (#8668)
rithviknishad Oct 1, 2024
f9d78f4
Fix: Infinite Loading State When Notification Permission is Blocked o…
shauryag2002 Oct 1, 2024
ac201b9
Remove "read more" for prescription notes in detailed view (#8647)
vishwansh01 Oct 1, 2024
50d4164
remove facility cover image upload tooltip (#8586)
sainak Oct 1, 2024
99d79de
Added Diagnosis at Discharge field when patient is discharged (#8390)
JOSHIK27 Oct 1, 2024
52d05eb
Updated README to include info on translations (#8690)
shivankacker Oct 2, 2024
ed31b71
Improve success bed notification for bed creation api (#8632)
AdityaJ2305 Oct 2, 2024
cf8f87b
Enable features from backend feature flags (#8512)
shivankacker Oct 3, 2024
4a9f52f
Bump @sentry/browser from 8.29.0 to 8.33.0 (#8696)
dependabot[bot] Oct 3, 2024
cd4cc9f
Bump echarts from 5.5.0 to 5.5.1 (#8524)
dependabot[bot] Oct 3, 2024
e44e245
Fix: Qualification field for nurse user type (#8694)
AdityaJ2305 Oct 3, 2024
ae6856d
Bump react-i18next from 13.5.0 to 15.0.2 (#8537)
dependabot[bot] Oct 3, 2024
bc4fa2c
Reduce the Notification Message display timings (#8689)
HitishRaoP Oct 3, 2024
90c43e7
Fix: Facility page view in mobile phones .. (#8693)
Jash2606 Oct 4, 2024
1687ced
Send only known BP attributes (#8703)
rithviknishad Oct 4, 2024
25f67c9
Merge pull request #8695 from ohcnetwork/develop
khavinshankar Oct 4, 2024
8e6a2f2
store the camera position correctly in camera preset create (#8710)
sainak Oct 4, 2024
1e29994
Merge pull request #8711 from ohcnetwork/develop
rithviknishad Oct 4, 2024
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
1 change: 0 additions & 1 deletion .example.env
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ REACT_STILL_WATCHING_PROMPT_DURATION=
# Feature flags
REACT_ENABLE_HCX=true
REACT_ENABLE_ABDM=true
REACT_ENABLE_SCRIBE=true
REACT_WARTIME_SHIFTING=true

# JWT token refresh interval (in milliseconds) (default: 5 minutes)
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ Authenticate to staging API with any of the following credentials
- Once the code review is done, the PR will be marked with a "Needs Testing" label where it'll be queued for QA testing.
- Once tested, the PR would be marked with a "Tested" label and would be queued for merge.

### Translations

All strings must be encased in i18n translations. New translation strings must be specified in `src`->`Locale`->`en`. Do not add translations for languages other than english through pull requests. Other language translations can be contributed through [Crowdin](https://crowdin.com/project/ohccarefe)

### Testing

To ensure the quality of our pull requests, we use a variety of tools:
Expand Down
4 changes: 0 additions & 4 deletions care.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,6 @@ const careConfig = {
abdm: {
enabled: (env.REACT_ENABLE_ABDM ?? "true") === "true",
},

scribe: {
enabled: env.REACT_ENABLE_SCRIBE === "true",
},
} as const;

export default careConfig;
4 changes: 2 additions & 2 deletions cypress/e2e/users_spec/UsersCreation.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ describe("User Creation", () => {
userCreationPage.setInputDate("date_of_birth", "date-input", "25081999");
userCreationPage.selectDropdownOption("user_type", "Doctor");
userCreationPage.typeIntoElementById("c_password", "Test@123");
userCreationPage.typeIntoElementById("doctor_qualification", "MBBS");
userCreationPage.typeIntoElementById("qualification", "MBBS");
userCreationPage.typeIntoElementById("doctor_experience_commenced_on", "2");
userCreationPage.typeIntoElementById(
"doctor_medical_council_registration",
Expand All @@ -172,7 +172,7 @@ describe("User Creation", () => {
"home_facility",
"Dummy Shifting Center",
);
userCreationPage.verifyElementContainsText("doctor-qualification", "MBBS");
userCreationPage.verifyElementContainsText("qualification", "MBBS");
userCreationPage.verifyElementContainsText("doctor-experience", "2");
userCreationPage.verifyElementContainsText(
"medical-council-registration",
Expand Down
4 changes: 2 additions & 2 deletions cypress/e2e/users_spec/UsersProfile.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ describe("Manage User Profile", () => {
const email = "[email protected]";
const phone = "+918899887788";
const workinghours = "8";
const doctorQualification = "MBBS";
const qualification = "MBBS";
const doctorYoE = "10";
const medicalCouncilRegistration = "1234567890";

Expand Down Expand Up @@ -40,7 +40,7 @@ describe("Manage User Profile", () => {
userProfilePage.typePhone(phone);
userProfilePage.typeWhatsApp(phone);
userProfilePage.typeWorkingHours(workinghours);
userProfilePage.typeDoctorQualification(doctorQualification);
userProfilePage.typeQualification(qualification);
userProfilePage.typeDoctorYoE(doctorYoE);
userProfilePage.typeMedicalCouncilRegistration(medicalCouncilRegistration);

Expand Down
4 changes: 2 additions & 2 deletions cypress/pageobject/Users/UserProfilePage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ export default class UserProfilePage {
cy.get("#weekly_working_hours").click().clear().type(workinghours);
}

typeDoctorQualification = (doctorQualification: string) => {
cy.get("#doctor_qualification").click().clear().type(doctorQualification);
typeQualification = (qualification: string) => {
cy.get("#qualification").click().clear().type(qualification);
};

typeDoctorYoE = (doctorYoE: string) => {
Expand Down
Loading
Loading