From 7f651742be76050b46a3360864aec4f516a44694 Mon Sep 17 00:00:00 2001 From: Blessed Tabvirwa Date: Thu, 20 Aug 2020 02:22:47 +0200 Subject: [PATCH] fix(labs): fix successfully updated lab message --- src/labs/ViewLab.tsx | 2 +- src/shared/locales/enUs/translations/labs/index.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/labs/ViewLab.tsx b/src/labs/ViewLab.tsx index 36b5a5eac3..bec53768c6 100644 --- a/src/labs/ViewLab.tsx +++ b/src/labs/ViewLab.tsx @@ -69,7 +69,7 @@ const ViewLab = () => { Toast( 'success', t('states.success'), - `${t('labs.successfullyUpdated')} ${update.type} ${patient?.fullName}`, + `${t('labs.successfullyUpdated')} ${update.type} for ${patient?.fullName}`, ) } if (labToView) { diff --git a/src/shared/locales/enUs/translations/labs/index.ts b/src/shared/locales/enUs/translations/labs/index.ts index 5b56c0ee59..eafaca1ab4 100644 --- a/src/shared/locales/enUs/translations/labs/index.ts +++ b/src/shared/locales/enUs/translations/labs/index.ts @@ -3,6 +3,7 @@ export default { label: 'Labs', filterTitle: 'Filter by status', search: 'Search labs', + successfullyUpdated: 'Successfully updated', status: { requested: 'Requested', completed: 'Completed',