Skip to content

Commit

Permalink
formatted date (#1679)
Browse files Browse the repository at this point in the history
  • Loading branch information
kirwea authored Nov 15, 2023
1 parent f20548e commit 7c27d5a
Showing 1 changed file with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,7 @@ const ClinicalVisitList: React.FC<ClinicalVisitListProps> = ({ patientUuid }) =>
key: 'clinicalNextAppointmentDate',
header: t('nextAppointmentDate', 'Next Appointment Date'),
getValue: (encounter) => {
return getObsFromEncounter(encounter, returnVisitDateConcept);
},
},
{
key: 'clinicalAppointmentReason',
header: t('appointmentReason', 'Appointment Reason'),
getValue: (encounter) => {
return '--';
return getObsFromEncounter(encounter, returnVisitDateConcept, true);
},
},
{
Expand Down

0 comments on commit 7c27d5a

Please sign in to comment.