Skip to content

Commit ca91461

Browse files
authored
Merge pull request #408 from bcgsc/hotfix/release-6.25.0
[hotfix] release 6.25.0 fixes
2 parents 39e5cf0 + e7e6b1a commit ca91461

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

app/components/TumourSummaryEdit/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ const TumourSummaryEdit = ({
7777
totalMutationsPerMb: mutationBurden.totalMutationsPerMb,
7878
});
7979
}
80-
}, [mutationBurden]);
80+
}, [mutationBurden, mutationBurden.totalMutationsPerMb]);
8181

8282
useEffect(() => {
8383
if (tmburMutBur) {

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -559,6 +559,7 @@ const GenomicSummary = ({
559559
microbial={microbial}
560560
report={report}
561561
mutationBurden={primaryBurden}
562+
tmburMutBur={tmburMutBur}
562563
isOpen={showTumourSummaryEdit}
563564
onClose={handleTumourSummaryEditClose}
564565
/>
@@ -602,7 +603,7 @@ const GenomicSummary = ({
602603
{dataSection}
603604
</div>
604605
);
605-
}, [canEdit, classNamePrefix, handleTumourSummaryEditClose, microbial, primaryBurden, report, showTumourSummaryEdit, tumourSummary, printVersion]);
606+
}, [canEdit, classNamePrefix, handleTumourSummaryEditClose, microbial, primaryBurden, tmburMutBur, report, showTumourSummaryEdit, tumourSummary, printVersion]);
606607

607608
const alterationsSection = useMemo(() => {
608609
let titleSection = (

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ const columnDefs: ColDef[] = [{
100100
hide: true,
101101
}, {
102102
headerName: 'Expression (Z-score)',
103-
colId: 'diseaseZscore',
103+
colId: 'diseaseZScore',
104104
valueGetter: 'data.gene.expressionVariants.diseaseZScore',
105105
hide: false,
106106
}, {

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ const columnDefs = [{
7878
hide: true,
7979
}, {
8080
headerName: 'Expression (Z-score) 5`/3',
81-
colId: 'diseaseZscore',
82-
valueGetter: createGeneRelatedValueGetter('expressionVariants', ' / ', 'diseaseZscore'),
81+
colId: 'diseaseZScore',
82+
valueGetter: createGeneRelatedValueGetter('expressionVariants', ' / ', 'diseaseZScore'),
8383
hide: false,
8484
}, {
8585
headerName: 'Oncogene',

0 commit comments

Comments
 (0)