Skip to content
This repository has been archived by the owner on Jun 14, 2024. It is now read-only.

Commit

Permalink
Merge pull request #62 from KPMP/KPMP-2018_FixParticipantId
Browse files Browse the repository at this point in the history
KPMP-2018: Switch to point at the correct location for participant id
  • Loading branch information
zwright authored Aug 3, 2020
2 parents 6c27530 + 720996a commit da994c0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -201,10 +201,10 @@ const filesTableModel = [
},
{
name: 'Participant ID',
id: 'sample_id',
id: 'participant_id',
th: () => <Th>Participant ID</Th>,
td: ({ node }) => <Td>{node.cases.samples.sample_id ?
node.cases.samples.sample_id.join(", ") : '--'}</Td>,
td: ({ node }) => <Td>{node.cases.samples.participant_id ?
node.cases.samples.participant_id.join(", ") : '--'}</Td>,
sortable: true,
downloadable: true,
hidden: false,
Expand Down

0 comments on commit da994c0

Please # to comment.