Skip to content

Commit b22b0e0

Browse files
committed
feat: add background image to ReportDetailPage header and remove normal values filtering
1 parent 27792bf commit b22b0e0

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed
Lines changed: 13 additions & 0 deletions
Loading

frontend/src/pages/ReportDetail/ReportDetailPage.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
&__header {
99
padding: 20px var(--padding-horizontal) 16px;
1010
position: relative;
11+
background-image: url('../../assets/img/report-header-bg.svg');
1112
}
1213

1314
&__title-container {

frontend/src/pages/ReportDetail/components/AiAnalysisTab.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@ const AiAnalysisTab: React.FC<AiAnalysisTabProps> = ({
2727
const flaggedValues: LabValue[] = reportData.labValues.filter(
2828
(value) => value.status !== 'normal',
2929
);
30-
const normalValues: LabValue[] = reportData.labValues.filter(
31-
(value) => value.status === 'normal',
32-
);
30+
const normalValues: LabValue[] = [];
3331

3432
// Format confidence score for display
3533
const confidenceScore = reportData.confidence;

0 commit comments

Comments
 (0)