From ed91c5c7a390b93ffdfb38d53de746befdc801bf Mon Sep 17 00:00:00 2001 From: andreltokdis Date: Tue, 8 Sep 2020 21:32:35 +0700 Subject: [PATCH] fix: Fix label View in Care Plans List Resolves #2372 --- src/patients/care-plans/CarePlanTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/patients/care-plans/CarePlanTable.tsx b/src/patients/care-plans/CarePlanTable.tsx index a606af73d6..e7561a6330 100644 --- a/src/patients/care-plans/CarePlanTable.tsx +++ b/src/patients/care-plans/CarePlanTable.tsx @@ -52,7 +52,7 @@ const CarePlanTable = (props: Props) => { actionsHeaderText={t('actions.label')} actions={[ { - label: 'actions.view', + label: t('actions.view'), key: 'view', action: (row) => history.push(`/patients/${patientId}/care-plans/${row.id}`), }, ]}