Skip to content

Commit

Permalink
Merge pull request #458 from udsm-dhis2-lab/feature/remote-patient-hi…
Browse files Browse the repository at this point in the history
…story

Feature/remote patient history
  • Loading branch information
josephatJ authored Oct 16, 2024
2 parents 151d49d + 5e499f4 commit c34d780
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
FROM udsmdhis2/icare-openmrs:1.0.0
RUN apt-get update && \
curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \
apt-get install -y nodejs
RUN node -v
COPY ./docker/glowroot /glowroot
COPY ./docker/setenv.sh bin/
COPY ./docker/admin.json /glowroot/

COPY ./omods/core/omod/target/icare-1.0.0-SNAPSHOT.omod .OpenMRS/modules/
COPY ./ui/dist/icare-ui webapps/ROOT
#COPY ./docs/build webapps/docs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export class SharedRemotePatientHistoryComponent implements OnInit {
constructor(private httpClientService: OpenmrsHttpClientService) {}

ngOnInit(): void {
// console.log(this.dataExchangeLocations);
this.selectedIdentifier = this.getPreferredIdentifier(
this.patient?.identifiers
);
Expand All @@ -39,7 +38,6 @@ export class SharedRemotePatientHistoryComponent implements OnInit {
};
}),
});
// console.log("dataExchangeLocations", this.dataExchangeLocations);
this.locationFormField = new Dropdown({
id: "location",
key: "location",
Expand Down Expand Up @@ -92,8 +90,6 @@ export class SharedRemotePatientHistoryComponent implements OnInit {
identifierType: string,
identifiers: any[]
): string {
console.log(identifiers);
console.log(identifierType);
return (identifiers?.filter(
(identifier: any) =>
identifier?.identifierType?.display === identifierType
Expand Down

0 comments on commit c34d780

Please sign in to comment.