diff --git a/src/app/patient-dashboard/common/locator-map/locator-map.component.html b/src/app/patient-dashboard/common/locator-map/locator-map.component.html
index 1eb3af07c..c3917475f 100644
--- a/src/app/patient-dashboard/common/locator-map/locator-map.component.html
+++ b/src/app/patient-dashboard/common/locator-map/locator-map.component.html
@@ -1,58 +1,8 @@
-
-
-
-
-
-
+
diff --git a/src/app/patient-dashboard/common/locator-map/locator-map.component.ts b/src/app/patient-dashboard/common/locator-map/locator-map.component.ts
index 541bd2ab4..46b9f26b4 100644
--- a/src/app/patient-dashboard/common/locator-map/locator-map.component.ts
+++ b/src/app/patient-dashboard/common/locator-map/locator-map.component.ts
@@ -16,10 +16,6 @@ import { PatientService } from '../../services/patient.service';
styleUrls: ['./locator-map.css']
})
export class LocatorMapComponent implements OnInit, OnDestroy {
- public display = false;
- public addDialog = false;
- public showSuccessAlert = false;
- public showErrorAlert = false;
public dataModel: string;
public mapInfo: any;
public lastUpdatedDate: string;
@@ -43,15 +39,7 @@ export class LocatorMapComponent implements OnInit, OnDestroy {
private personResourceService: PersonResourceService
) {}
- public ngOnInit(): void {}
-
- public ngOnDestroy(): void {}
-
- public showDialog() {
- this.display = true;
- }
-
- /*public ngOnInit() {
+ public ngOnInit() {
this.subscriptions.push(
this.patientService.currentlyLoadedPatient.subscribe((patient) => {
if (patient) {
@@ -197,5 +185,5 @@ export class LocatorMapComponent implements OnInit, OnDestroy {
public resetValues(): void {
this.dataModel = null;
this.pdfAvailable = false;
- } */
+ }
}
diff --git a/src/app/patient-dashboard/common/patient-info/patient-info.component.html b/src/app/patient-dashboard/common/patient-info/patient-info.component.html
index 642d890a3..b88973d8d 100644
--- a/src/app/patient-dashboard/common/patient-info/patient-info.component.html
+++ b/src/app/patient-dashboard/common/patient-info/patient-info.component.html
@@ -81,12 +81,12 @@
Relationships
-
+
Patient Location Details
-
+
diff --git a/src/app/shared/data-lists/pre-appointment-patient-list/pre-appointment-patient-list.component.ts b/src/app/shared/data-lists/pre-appointment-patient-list/pre-appointment-patient-list.component.ts
index 85bdd42b7..6f34b3081 100644
--- a/src/app/shared/data-lists/pre-appointment-patient-list/pre-appointment-patient-list.component.ts
+++ b/src/app/shared/data-lists/pre-appointment-patient-list/pre-appointment-patient-list.component.ts
@@ -80,6 +80,11 @@ export class PreAppointmentPatientListComponent
return { 'background-color': 'green', color: 'white' };
} else if (params.data.rescheduled_date !== null) {
return { 'background-color': 'yellow' };
+ } else if (
+ params.data.follow_up_type !== null &&
+ params.data.was_follow_up_successful === 0
+ ) {
+ return { 'background-color': 'pink' };
} else {
return {};
}