Skip to content

Commit

Permalink
Update terminology: replace "no_consultation_updates" with "no_log_up…
Browse files Browse the repository at this point in the history
…dates" and add corresponding message in localization file
  • Loading branch information
yash-learner committed Nov 13, 2024
1 parent e29a2b3 commit d2a2e05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions public/locale/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -903,6 +903,7 @@
"no_investigation_suggestions": "No Investigation Suggestions",
"no_linked_facilities": "No Linked Facilities",
"no_log_update_delta": "No changes since previous log update",
"no_log_updates": "No log updates found",
"no_notices_for_you": "No notices for you.",
"no_patients_to_show": "No patients to show.",
"no_policy_added": "No Insurance Policy Added",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Facility/Consultations/DailyRoundsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default function DailyRoundsList({ consultation, query }: Props) {
<div className="flex flex-col gap-4 overflow-y-auto overflow-x-hidden px-3">
<PaginatedList.WhenEmpty className="flex w-full justify-center border-b border-secondary-200 bg-white p-5 text-center text-2xl font-bold text-secondary-500">
<span className="flex justify-center rounded-lg bg-white p-3 text-secondary-700">
{t("no_consultation_updates")}
{t("no_log_updates")}
</span>
</PaginatedList.WhenEmpty>
<PaginatedList.WhenLoading>
Expand Down

0 comments on commit d2a2e05

Please sign in to comment.