Skip to content

Commit 3005aa8

Browse files
authored
Merge pull request #328 from bcgsc/release/v6.19.2
Release/v6.19.2
2 parents b2dd5c4 + 63410d8 commit 3005aa8

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

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

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,17 @@ const cancerRelevanceColDefs = [
107107
{
108108
headerName: 'Alt/Total (Tumour)',
109109
colId: 'Alt/Total (Tumour)',
110-
valueGetter: ({ data: { tumourAltCount, tumourDepth } }) => {
110+
valueGetter: ({
111+
data: {
112+
tumourAltCount, tumourDepth, rnaAltCount, rnaDepth,
113+
},
114+
}) => {
111115
if ((tumourAltCount && tumourDepth) || (tumourAltCount === 0 || tumourDepth === 0)) {
112116
return `${tumourAltCount}/${tumourDepth}`;
113117
}
118+
if ((rnaAltCount && rnaDepth) || (rnaAltCount === 0 || rnaDepth === 0)) {
119+
return `${rnaAltCount}/${rnaDepth}`;
120+
}
114121
return '';
115122
},
116123
hide: false,

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "ipr-client",
4-
"version": "6.19.1",
4+
"version": "6.19.2",
55
"keywords": [],
66
"license": "GPL-3.0",
77
"sideEffects": false,

0 commit comments

Comments
 (0)