Skip to content

Commit

Permalink
fix: SJIP-569 rename column and fix in readme file
Browse files Browse the repository at this point in the history
  • Loading branch information
celinepelletier committed Oct 24, 2023
1 parent 2a1fbdb commit 49d6491
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/reports/biospecimen-request/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const generateStudyTab: (study_code: string) => SheetConfig = study_code
{ field: 'external_collection_sample_id', header: 'External Collection ID' },
{ field: 'collection_sample_id', header: 'INCLUDE Collection ID' },
{ field: 'collection_sample_type', header: 'Collection Sample Type' },
{ field: 'container_id', header: 'Container ID' },
{ field: 'container_id', header: 'INCLUDE Container ID' },
{ field: 'external_container_id', header: 'External Container ID' },
{ field: 'participant.external_id', header: 'External Participant ID' },
{ field: 'participant.participant_id', header: 'INCLUDE Participant ID' },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default async function generateFiles(

// Add biorepository request note to README content for the study
if ((row as any).study.note) {
readmeContent += `\n${(row as any).study.note}`;
readmeContent += `${(row as any).study.note}\n`;
}
}

Expand Down

0 comments on commit 49d6491

Please sign in to comment.