Skip to content

Commit

Permalink
Merge pull request #3862 from kids-first/fix/SKFP-870-empty-part-entity
Browse files Browse the repository at this point in the history
fix(participant): SKFP-870 graphql error
  • Loading branch information
AltefrohneGaelle authored Nov 29, 2023
2 parents ad13d56 + 0cde255 commit 8f380ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/graphql/participants/queries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export const GET_PARTICIPANT_ENTITY = gql`
collection_anatomy_site
collection_method_of_sample_procurement
collection_ncit_anatomy_site_id
collection_ncit_id_tissue_type
ncit_id_tissue_type
collection_sample_id
collection_sample_type
consent_type
Expand Down
4 changes: 2 additions & 2 deletions src/views/ParticipantEntity/utils/biospecimens.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ export const getBiospecimensDefaultColumns = (): ProColumnType[] => [
biospecimen?.collection_anatomy_site || TABLE_EMPTY_PLACE_HOLDER,
},
{
key: 'collection_ncit_id_tissue_type',
key: 'ncit_id_tissue_type',
title: intl.get('entities.biospecimen.ncit_id_tissue_type'),
dataIndex: 'collection_ncit_id_tissue_type',
dataIndex: 'ncit_id_tissue_type',
defaultHidden: true,
render: (ncit_id_tissue_type) => ncit_id_tissue_type || TABLE_EMPTY_PLACE_HOLDER,
},
Expand Down

0 comments on commit 8f380ff

Please sign in to comment.