diff --git a/public/locale/en.json b/public/locale/en.json index 470fc7b31ca..161a1140fd5 100644 --- a/public/locale/en.json +++ b/public/locale/en.json @@ -1323,6 +1323,7 @@ "no_country_found": "No country found", "no_data_found": "No data found", "no_departments_teams_found": "No Departments or Teams found", + "no_diagnoses_recorded": "No diagnoses recorded", "no_doctors_found": "No Doctors Found", "no_duplicate_facility": "You should not create duplicate facilities", "no_encounters_found": "No encounters found", @@ -1373,6 +1374,7 @@ "no_social_profile_details_available": "No Social Profile Details Available", "no_staff": "No staff found", "no_sub_organizations_found": "No sub-organizations found", + "no_symptoms_recorded": "No symptoms recorded", "no_tags_found": "No tags found", "no_tags_selected": "No tags selected", "no_tests_taken": "No tests taken", diff --git a/src/components/Patient/MedicationStatementList.tsx b/src/components/Patient/MedicationStatementList.tsx index 9d2549eb3ba..495b8ee4904 100644 --- a/src/components/Patient/MedicationStatementList.tsx +++ b/src/components/Patient/MedicationStatementList.tsx @@ -139,10 +139,10 @@ export function MedicationStatementList({ if (!filteredMedications?.length) { return ( - + {t("ongoing_medications")} - +

{t("no_ongoing_medications")}

diff --git a/src/components/Patient/allergy/list.tsx b/src/components/Patient/allergy/list.tsx index 8e1a9686a90..c255b1e490f 100644 --- a/src/components/Patient/allergy/list.tsx +++ b/src/components/Patient/allergy/list.tsx @@ -74,7 +74,7 @@ export function AllergyList({ patientId={patientId} encounterId={encounterId} > - +

{t("no_allergies_recorded")}

diff --git a/src/components/Patient/diagnosis/list.tsx b/src/components/Patient/diagnosis/list.tsx index d0e8c4acede..10d3a9d2d5d 100644 --- a/src/components/Patient/diagnosis/list.tsx +++ b/src/components/Patient/diagnosis/list.tsx @@ -63,7 +63,9 @@ export function DiagnosisList({ patientId={patientId} encounterId={encounterId} > -

{t("no_diagnoses_recorded")}

+ +

{t("no_diagnoses_recorded")}

+
); } diff --git a/src/components/Patient/symptoms/list.tsx b/src/components/Patient/symptoms/list.tsx index 24f7a8142c8..5034364e078 100644 --- a/src/components/Patient/symptoms/list.tsx +++ b/src/components/Patient/symptoms/list.tsx @@ -62,7 +62,9 @@ export function SymptomsList({ patientId={patientId} encounterId={encounterId} > -

{t("no_symptoms_recorded")}

+ +

{t("no_symptoms_recorded")}

+
); }