File tree Expand file tree Collapse file tree 4 files changed +16
-3
lines changed
backend/src/document-processor/services Expand file tree Collapse file tree 4 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -75,6 +75,7 @@ For lab values:
7575- Provide brief "conclusion" about what the value means for health
7676- Add brief "suggestions" based on the value
7777- If you use standard ranges because the document lacks them, clearly mark this in your response
78+ - "normalRange" should be a string with the range (e.g., "4.5-5.5") as concise as possible without explanations
7879
7980CRITICAL FORMATTING RULES:
8081- Begin immediately with { and end with }
Original file line number Diff line number Diff line change 702702 }
703703
704704 & __uploaded-file {
705- background-color : #fff ;
706705 border : 1px solid #ebeef8 ;
707706 border-radius : 16px ;
708707 padding : 16px ;
Original file line number Diff line number Diff line change 11import React from 'react' ;
22import { format } from 'date-fns' ;
3- import Icon from '../../../common/components/Icon/Icon ' ;
3+ import fileLinesIcon from '../../../assets/icons/file-lines.svg ' ;
44import { MedicalReport } from '../../../common/models/medicalReport' ;
55import orangeAlertIcon from '../../../assets/icons/orange-alert.svg' ;
66import redAlertIcon from '../../../assets/icons/red-alert.svg' ;
@@ -89,7 +89,7 @@ const OriginalReportTab: React.FC<OriginalReportTabProps> = ({ reportData }) =>
8989 < h4 className = "report-detail-page__uploaded-file-title" > Uploaded file</ h4 >
9090 < div className = "report-detail-page__file-container" >
9191 < div className = "report-detail-page__file-icon" >
92- < Icon icon = "filePdf " />
92+ < img src = { fileLinesIcon } alt = "File icon " />
9393 </ div >
9494 < div className = "report-detail-page__file-details" >
9595 < div className = "report-detail-page__file-name" > { filename } </ div >
You can’t perform that action at this time.
0 commit comments