Skip to content
Merged

Dev #147

Changes from all commits
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
3 changes: 1 addition & 2 deletions src/components/RequestDashboard/TasksSection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import { MemoizedTabPanel } from './TabPanel';
import { Refresh } from '@mui/icons-material';
import {
getPatientFirstAndLastName,
getPatientFullName,
getPractitionerFirstAndLastName,
retrieveLaunchContext
} from '../../util/util';
Expand Down Expand Up @@ -281,7 +280,7 @@ const TasksSection = props => {
},
{
id: 'patient',
display: `Assign to patient${patient ? ' (' + getPatientFullName(patient) + ')' : ''}`
display: `Assign to patient${patient ? ' (' + getPatientFirstAndLastName(patient) + ')' : ''}`
},
{
id: 'unassign',
Expand Down
Loading