We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f7d92e commit d8f71c8Copy full SHA for d8f71c8
app/components/TumourSummaryEdit/index.tsx
@@ -382,7 +382,7 @@ const TumourSummaryEdit = ({
382
<TextField
383
className="tumour-dialog__text-field"
384
label="genomeSnvTmb"
385
- value={newTmburMutData?.genomeSnvTmb ?? 0}
+ value={newTmburMutData?.genomeSnvTmb ?? null}
386
name="genomeSnvTmb"
387
onChange={handleTmburChange}
388
variant="outlined"
@@ -392,7 +392,7 @@ const TumourSummaryEdit = ({
392
393
394
label="genomeIndelTmb"
395
- value={newTmburMutData?.genomeIndelTmb ?? 0}
+ value={newTmburMutData?.genomeIndelTmb ?? null}
396
name="genomeIndelTmb"
397
398
0 commit comments