Skip to content

Commit

Permalink
Merge branch 'issue/10158/patient-user-card-fix' of https://github.co…
Browse files Browse the repository at this point in the history
…m/rajku-dev/care_fe into issue/10158/patient-user-card-fix
  • Loading branch information
rajku-dev committed Feb 3, 2025
2 parents d6eb604 + 835bae6 commit 0d44a1d
Show file tree
Hide file tree
Showing 149 changed files with 1,610 additions and 5,259 deletions.
56 changes: 0 additions & 56 deletions .github/workflows/auto-testing-label.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/workflows/combine.yml

This file was deleted.

43 changes: 0 additions & 43 deletions .github/workflows/comment-p1-issues.yml

This file was deleted.

41 changes: 0 additions & 41 deletions .github/workflows/label-deploy-failed.yml

This file was deleted.

3 changes: 2 additions & 1 deletion .github/workflows/label-merge-conflict.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,6 @@ jobs:
wait_ms: 15000
detect_merge_changes: false
conflict_comment: |
:wave: Hi, @${author},
Conflicts have been detected against the base branch. Please rebase your branch against the base branch.
cc: @${author}
> _See: https://docs.ohc.network/docs/contributing#how-to-resolve-merge-conflicts_
54 changes: 0 additions & 54 deletions .github/workflows/label-wip.yml

This file was deleted.

3 changes: 1 addition & 2 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
pull_request:
branches:
- develop
- master
merge_group:

jobs:
Expand All @@ -22,7 +21,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
node-version: "22"

- name: Install dependencies
run: npm ci
Expand Down
2 changes: 2 additions & 0 deletions cypress/e2e/facility_spec/facility_creation.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import { generatePhoneNumber } from "@/utils/commonUtils";
import { generateFacilityData } from "@/utils/facilityData";

const LOCATION_HIERARCHY = {
state: "Kerala",
district: "Ernakulam",
localBody: "Aluva",
ward: "4",
};
Expand Down
13 changes: 12 additions & 1 deletion cypress/pageObject/facility/FacilityCreation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,18 @@ export class FacilityCreation {
.should("not.be.empty");
}

fillLocationHierarchy(location: { localBody: string; ward: string }) {
fillLocationHierarchy(location: {
state: string;
district: string;
localBody: string;
ward: string;
}) {
cy.typeAndSelectOption('[data-cy="select-state"]', location.state, false);
cy.typeAndSelectOption(
'[data-cy="select-district"]',
location.district,
false,
);
// Don't verify selection for local body (false parameter)
cy.typeAndSelectOption(
'[data-cy="select-local_body"]',
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8" />
<meta
name="viewport"
content="minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no"
content="minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no, interactive-widget=resizes-content"
/>
<title>%REACT_APP_TITLE%</title>
<meta name="description" content="%REACT_APP_META_DESCRIPTION%" />
Expand Down
Loading

0 comments on commit 0d44a1d

Please sign in to comment.