Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

fix(care plan): fix view button label in list #2376

Merged
merged 2 commits into from
Sep 9, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/patients/care-plans/CarePlanTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const CarePlanTable = (props: Props) => {
actionsHeaderText={t('actions.label')}
actions={[
{
label: 'actions.view',
label: t('actions.view'),
action: (row) => history.push(`/patients/${patientId}/care-plans/${row.id}`),
},
]}
Expand Down