Skip to content

Commit 39e5cf0

Browse files
committed
Revert "hotfix: release 6.25.0 fixes"
This reverts commit 7b8ad5c.
1 parent 7b8ad5c commit 39e5cf0

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
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, mutationBurden.totalMutationsPerMb]);
80+
}, [mutationBurden]);
8181

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

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

+1-2
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,6 @@ const GenomicSummary = ({
559559
microbial={microbial}
560560
report={report}
561561
mutationBurden={primaryBurden}
562-
tmburMutBur={tmburMutBur}
563562
isOpen={showTumourSummaryEdit}
564563
onClose={handleTumourSummaryEditClose}
565564
/>
@@ -603,7 +602,7 @@ const GenomicSummary = ({
603602
{dataSection}
604603
</div>
605604
);
606-
}, [canEdit, classNamePrefix, handleTumourSummaryEditClose, microbial, primaryBurden, tmburMutBur, report, showTumourSummaryEdit, tumourSummary, printVersion]);
605+
}, [canEdit, classNamePrefix, handleTumourSummaryEditClose, microbial, primaryBurden, report, showTumourSummaryEdit, tumourSummary, printVersion]);
607606

608607
const alterationsSection = useMemo(() => {
609608
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)