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

Commit

Permalink
KPMP-2018: Switch to point at the correct location for participant id
Browse files Browse the repository at this point in the history
  • Loading branch information
rlreamy committed Aug 3, 2020
1 parent 6c27530 commit 720996a
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 720996a

Please # to comment.