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 #63 from KPMP/develop
Browse files Browse the repository at this point in the history
Point release to fix participant id issue
  • Loading branch information
rlreamy authored Aug 4, 2020
2 parents 1dac67f + da994c0 commit 27c87a4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.2.0",
"version": "1.0.0",
"repository": "KPMP/portal-ui",
"name": "portal-ui",
"author": {
Expand Down
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 27c87a4

Please # to comment.