Skip to content

Commit

Permalink
for unsuccessful contact attempts, added maroon filter (AMPATH#1682)
Browse files Browse the repository at this point in the history
  • Loading branch information
Angie-540 authored and sainingo committed Dec 14, 2023
1 parent 30505bc commit f8b631f
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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': 'maroon', color: 'white' };
} else {
return {};
}
Expand Down

0 comments on commit f8b631f

Please sign in to comment.