diff --git a/app/context/ReportContext/types.d.ts b/app/context/ReportContext/types.d.ts index 18ad3bbc7..837331902 100644 --- a/app/context/ReportContext/types.d.ts +++ b/app/context/ReportContext/types.d.ts @@ -54,6 +54,7 @@ type ReportType = { oncotreeTumourType: string; kbDiseaseMatch: string; m1m2Score: number; + captiv8Score: number; } & RecordDefaults; type ReportContextType = { diff --git a/app/views/ReportView/components/RapidSummary/index.tsx b/app/views/ReportView/components/RapidSummary/index.tsx index 610199f62..53ee76ecf 100644 --- a/app/views/ReportView/components/RapidSummary/index.tsx +++ b/app/views/ReportView/components/RapidSummary/index.tsx @@ -294,6 +294,12 @@ const RapidSummary = ({ ? `${report.m1m2Score}` : null, }, + { + term: 'Captiv 8 Score', + value: report.captiv8Score !== null + ? `${report.captiv8Score}` + : null, + }, { term: 'Microbial Species', value: microbial ? microbial.map(({ species, integrationSite }) => { @@ -321,7 +327,7 @@ const RapidSummary = ({ value: msiStatus, }, ]); - }, [microbial, tmburMutBur, report.m1m2Score, report.sampleInfo, report.tumourContent, tCellCd8?.percentile, tCellCd8?.score]); + }, [microbial, tmburMutBur, report.m1m2Score, report.sampleInfo, report.tumourContent, tCellCd8?.percentile, tCellCd8?.score, report.captiv8Score]); const handlePatientEditClose = useCallback(async ( isSaved: boolean,