Skip to content

Commit

Permalink
i18n and padding in Overview
Browse files Browse the repository at this point in the history
  • Loading branch information
amjithtitus09 committed Jan 31, 2025
1 parent 226abf4 commit b6339f3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions public/locale/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down
4 changes: 3 additions & 1 deletion src/components/Patient/diagnosis/list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ export function DiagnosisList({
patientId={patientId}
encounterId={encounterId}
>
<p className="text-muted-foreground">{t("no_diagnoses_recorded")}</p>
<p className="text-muted-foreground px-2 pb-2">
{t("no_diagnoses_recorded")}
</p>
</DiagnosisListLayout>
);
}
Expand Down
4 changes: 3 additions & 1 deletion src/components/Patient/symptoms/list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ export function SymptomsList({
patientId={patientId}
encounterId={encounterId}
>
<p className="text-muted-foreground">{t("no_symptoms_recorded")}</p>
<p className="text-muted-foreground px-2 pb-2">
{t("no_symptoms_recorded")}
</p>
</SymptomListLayout>
);
}
Expand Down

0 comments on commit b6339f3

Please sign in to comment.