Skip to content

Commit a8f5c92

Browse files
committed
Remove highlight for test results out of range
1 parent 8b64388 commit a8f5c92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/pages/Reports/ReportDetailPage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,9 +209,9 @@ const ReportDetailPage: React.FC = () => {
209209
</thead>
210210
<tbody>
211211
{bloodTestData.results.map((result, index) => (
212-
<tr key={index} className={result.isOutOfRange ? 'out-of-range' : ''}>
212+
<tr key={index}>
213213
<td>{result.name}</td>
214-
<td className="result-value" style={result.isOutOfRange ? { color: 'var(--ion-color-danger)' } : {}}>
214+
<td className="result-value">
215215
{result.value}
216216
</td>
217217
<td className="result-range">{result.range}</td>

0 commit comments

Comments
 (0)