Skip to content

Commit

Permalink
BAH-3946 | Bahmniapps CSS bleeding into Intake Output display control
Browse files Browse the repository at this point in the history
  • Loading branch information
Arjun-Go committed Jun 10, 2024
1 parent fad9ee8 commit a7f171f
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: 🏗️ Build and Publish
on:
push:
branches:
- main
- Bahmni-IPD-master
paths-ignore:
- "**.md"
workflow_run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: Workflow to validate PRs

on:
pull_request:
branches: [main]
branches: [Bahmni-IPD-master]

jobs:
build:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ const IntakeOutput = () => {
callFetchIntakeAndOutputData();
}, []);
return (
<div className="container display-container">
<div className="form-dc-container display-container">
<div className={"navigation"}>
<div className="period-header">
<Button
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
grid-row: 2;
}

.container {
.form-dc-container {
display: flex;
flex-direction: column;
position: relative;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ const PatientFeedingRecord = () => {
callFetchPatientFeedingRecordData();
}, []);
return (
<div className="container display-container">
<div className="form-dc-container display-container">
<div className={"navigation"}>
<div className="period-header">
<Button
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
exports[`PatientFeedingRecord should render PatientFeedingRecord 1`] = `
<div>
<div
class="container display-container"
class="form-dc-container display-container"
>
<div
class="navigation"
Expand Down Expand Up @@ -75,7 +75,7 @@ exports[`PatientFeedingRecord should render PatientFeedingRecord 1`] = `
<div
class="period-time"
>
10 May 2024
31 Aug 2021
<span
class="mr-5"
Expand Down Expand Up @@ -109,7 +109,7 @@ exports[`PatientFeedingRecord should render PatientFeedingRecord 1`] = `
to
</span>
11 May 2024
01 Sep 2021
<span
class="mr-5"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ describe("PatientFeedingRecordTable", () => {

describe("PatientFeedingRecord", () => {
it("should render PatientFeedingRecord", () => {
MockDate.set("2021-09-01T00:00:00.000Z");
const { container } = render(
<IPDContext.Provider
value={{ config: mockConfig, visitSummary: mockVisitSummaryData }}
Expand Down

0 comments on commit a7f171f

Please sign in to comment.