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

Commit

Permalink
feat(relatedpersontab): add cursor icon to related persons list
Browse files Browse the repository at this point in the history
fix #1792
  • Loading branch information
ocBruno committed Feb 6, 2020
1 parent 1325cca commit ef7e19c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/patients/related-persons/RelatedPersonTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ const RelatedPersonTab = (props: Props) => {
{relatedPersons ? (
<List>
{relatedPersons.map((r) => (
<ListItem key={r.id} onClick={() => onRelatedPersonClick(r.id)}>
<ListItem action key={r.id} onClick={() => onRelatedPersonClick(r.id)}>
{r.fullName}
</ListItem>
))}
Expand Down

0 comments on commit ef7e19c

Please sign in to comment.