We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b64388 commit a8f5c92Copy full SHA for a8f5c92
frontend/src/pages/Reports/ReportDetailPage.tsx
@@ -209,9 +209,9 @@ const ReportDetailPage: React.FC = () => {
209
</thead>
210
<tbody>
211
{bloodTestData.results.map((result, index) => (
212
- <tr key={index} className={result.isOutOfRange ? 'out-of-range' : ''}>
+ <tr key={index}>
213
<td>{result.name}</td>
214
- <td className="result-value" style={result.isOutOfRange ? { color: 'var(--ion-color-danger)' } : {}}>
+ <td className="result-value">
215
{result.value}
216
</td>
217
<td className="result-range">{result.range}</td>
0 commit comments