Skip to content

Commit 9fecd38

Browse files
authored
Merge pull request #741 from bcgsc/hotfix/v7.3.1
Hotfix/v7.3.1
2 parents 4872b9e + 47dafa3 commit 9fecd38

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

app/views/ReportView/components/RapidSummary/index.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -383,18 +383,20 @@ const RapidSummary = ({
383383
const { genomeTmb } = report;
384384

385385
let tmbDisplayValue = 'No data available';
386+
387+
if (genomeTmb) {
388+
tmbDisplayValue = genomeTmb.toFixed(2);
389+
}
386390

387391
if (tmburMutBur) {
388392
const { tmbHidden, adjustedTmb } = tmburMutBur;
389393
if (tmbHidden) {
390394
tmbDisplayValue = null;
391395
} else if (adjustedTmb != null) {
392396
tmbDisplayValue = adjustedTmb.toFixed(2);
393-
} else if (genomeTmb) {
394-
tmbDisplayValue = genomeTmb.toFixed(2);
395397
}
396398
}
397-
399+
398400
return ([
399401
{
400402
term: 'Pathology Tumour Content',

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": "7.3.0",
4+
"version": "7.3.1",
55
"keywords": [],
66
"license": "GPL-3.0",
77
"sideEffects": false,

0 commit comments

Comments
 (0)