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