We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 59612c3 + 08c04b3 commit e9f8f65Copy full SHA for e9f8f65
app/views/ReportView/components/RapidSummary/index.tsx
@@ -384,18 +384,20 @@ const RapidSummary = ({
384
const { genomeTmb } = report;
385
386
let tmbDisplayValue = 'No data available';
387
+
388
+ if (genomeTmb) {
389
+ tmbDisplayValue = genomeTmb.toFixed(2);
390
+ }
391
392
if (tmburMutBur) {
393
const { tmbHidden, adjustedTmb } = tmburMutBur;
394
if (tmbHidden) {
395
tmbDisplayValue = null;
396
} else if (adjustedTmb != null) {
397
tmbDisplayValue = adjustedTmb.toFixed(2);
- } else if (genomeTmb) {
- tmbDisplayValue = genomeTmb.toFixed(2);
398
}
399
-
400
401
return ([
402
{
403
term: 'Pathology Tumour Content',
0 commit comments