Skip to content

Commit

Permalink
Merge pull request I-TECH-UW#898 from mozzy11/develop_3x
Browse files Browse the repository at this point in the history
Minor fixes
  • Loading branch information
mozzy11 authored Mar 25, 2024
2 parents 2a000fb + 8b49f1d commit 3d97144
Show file tree
Hide file tree
Showing 15 changed files with 19 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

tasks:
- name: Build the Dependencies and Start the docker containers
init: cd dataexport && mvn clean install -DskipTests && cd .. && mvn clean install
init: cd dataexport && mvn clean install -DskipTests && cd .. && mvn clean install && cd frontend && npm install && cd ..
command: docker-compose -f dev.docker-compose.yml up -d


8 changes: 4 additions & 4 deletions frontend/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import Workplan from "./components/workplan/Workplan";
import AddOrder from "./components/addOrder/Index";
import FindOrder from "./components/modifyOrder/Index";
import ModifyOrder from "./components/modifyOrder/ModifyOrder";
import RoutineReports from "./components/Reports/Routine";
import StudyReports from "./components/Reports/Study";
import RoutineReports from "./components/reports/Routine";
import StudyReports from "./components/reports/Study";
import StudyValidation from "./components/validation/Index";
import PathologyDashboard from "./components/pathology/PathologyDashboard";
import CytologyDashboard from "./components/cytology/CytologyDashBoard";
Expand All @@ -33,8 +33,8 @@ import ImmunohistochemistryDashboard from "./components/immunohistochemistry/Imm
import ImmunohistochemistryCaseView from "./components/immunohistochemistry/ImmunohistochemistryCaseView";
import RoutedResultsViewer from "./components/patient/resultsViewer/results-viewer.tsx";
import EOrderPage from "./components/eOrder/Index";
import RoutineIndex from "./components/Reports/routine/Index.js";
import StudyIndex from "./components/Reports/study/index.js";
import RoutineIndex from "./components/reports/routine/Index.js";
import StudyIndex from "./components/reports/study/index.js";
import PrintBarcode from "./components/printBarcode/Index";

export default function App() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ import {
Microscope,
} from "@carbon/icons-react";
import config from "../../config.json";
import PageBreadCrumb from "../common/PageBreadCrumb";

let breadcrumbs = [{ label: "home.label", link: "/" }];
export const RoutineReportsMenu = {
className: "resultSideNav",
sideNavMenuItems: [
Expand Down Expand Up @@ -144,6 +147,9 @@ export const RoutineReportsMenu = {
const Routine = () => {
return (
<>
<div style={{marginLeft: '1%'}}>
<PageBreadCrumb breadcrumbs={breadcrumbs} />
</div>
<GlobalSideBar sideNav={RoutineReportsMenu} />
</>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ import {
Microscope,
} from "@carbon/icons-react";
import config from "../../config.json";
import PageBreadCrumb from "../common/PageBreadCrumb";

let breadcrumbs = [{ label: "home.label", link: "/" }];
export const RoutineReportsMenu = {
className: "resultSideNav",
sideNavMenuItems: [
Expand Down Expand Up @@ -145,7 +148,6 @@ export const RoutineReportsMenu = {
{
link: "/StudyReport?type=patient&report=retroCInonConformityBySectionReason",
label:
config.serverBaseUrl +
<FormattedMessage id="sideNav.label.noncomformityreportsbyunit" />,
},
{
Expand Down Expand Up @@ -188,17 +190,21 @@ export const RoutineReportsMenu = {
icon: IbmWatsonNaturalLanguageUnderstanding,
SideNavMenuItem: [
{
link: "/StudyReport?type=study&report=auditTrail",
link: "/RoutineReport?type=routine&report=auditTrail",
label: <FormattedMessage id="sideNav.label.audittrail" />,
},
],
},
],
contentRoutes: [],
};

const Study = () => {
return (
<>
<div style={{marginLeft: '1%'}}>
<PageBreadCrumb breadcrumbs={breadcrumbs} />
</div>
<GlobalSideBar sideNav={RoutineReportsMenu} />
</>
);
Expand Down

0 comments on commit 3d97144

Please sign in to comment.