Skip to content

Commit 6493d94

Browse files
authored
Merge pull request #305 from bcgsc/release/v6.18.1
Release/v6.18.1
2 parents a05c542 + 6dd31ac commit 6493d94

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/views/ReportView/components/RapidSummary/columnDefs.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ const therapeuticAssociationColDefs = [
3939
hide: false,
4040
},
4141
{
42-
headerName: 'Alt/Total (Tumour DNA)',
43-
colId: 'Alt/Total (Tumour DNA)',
42+
headerName: 'Alt/Total (Tumour)',
43+
colId: 'Alt/Total (Tumour)',
4444
valueGetter: ({ data: { tumourAltCount, tumourDepth } }) => {
4545
if (tumourAltCount !== null && tumourDepth !== null) {
4646
return `${tumourAltCount}/${tumourDepth}`;
@@ -91,8 +91,8 @@ const cancerRelevanceColDefs = [
9191
hide: false,
9292
},
9393
{
94-
headerName: 'Alt/Total (Tumour DNA)',
95-
colId: 'Alt/Total (Tumour DNA)',
94+
headerName: 'Alt/Total (Tumour)',
95+
colId: 'Alt/Total (Tumour)',
9696
valueGetter: ({ data: { tumourAltCount, tumourDepth } }) => {
9797
if (tumourAltCount && tumourDepth) {
9898
return `${tumourAltCount}/${tumourDepth}`;

0 commit comments

Comments
 (0)