Skip to content
This repository was archived by the owner on Mar 29, 2026. It is now read-only.
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
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
},
"devDependencies": {
"@carbon/react": "^1.64.1",
"@ohri/openmrs-esm-ohri-commons-lib": "next",
"@openmrs/esm-framework": "next",
"@openmrs/esm-patient-common-lib": "next",
"@openmrs/esm-styleguide": "next",
Expand Down
7 changes: 7 additions & 0 deletions packages/esm-ugandaemr-app/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ import SubjectiveFindingsComponent from './pages/clinical-patient-summary/clinic
import ObjectiveFindingsComponent from './pages/clinical-patient-summary/clinical-patient-summary-tabs/objective-findings.component';
import TreatmentPlanComponent from './pages/clinical-patient-summary/clinical-patient-summary-tabs/treatment-plan.component';
import AssessmentComponent from './pages/clinical-patient-summary/clinical-patient-summary-tabs/assessment.component';
import { createOHRIPatientChartSideNavLink, patientChartDivider_dashboardMeta } from "@ohri/openmrs-esm-ohri-commons-lib";

import {
CalcMonthsOnART,
DSDMCategorizationDatasource,
Expand Down Expand Up @@ -98,6 +100,11 @@ export const clinicalPatientDashboardLink = getSyncLifecycle(
options,
);

export const clinicalViewsDivider = getSyncLifecycle(
createOHRIPatientChartSideNavLink(patientChartDivider_dashboardMeta),
options,
);

export const clinicalPatientSummary = getSyncLifecycle(ClinicalPatientSummary, options);

export const clincialPatientSummaryTabs = getSyncLifecycle(ClinicalPatientSummaryTabs, options);
Expand Down
8 changes: 7 additions & 1 deletion packages/esm-ugandaemr-app/src/routes.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@
}
],
"extensions": [
{
"name": "clinical-views-divider",
"slot": "patient-chart-dashboard-slot",
"component": "clinicalViewsDivider",
"order": 20
},
{
"name": "retrieve-facility-code-modal",
"component": "retrieveFacilityCodeModal"
Expand Down Expand Up @@ -133,4 +139,4 @@
"component": "appSearchLaunch"
}
]
}
}
Loading