revert to old method of cls

This commit is contained in:
Pritimay Sarkar
2023-11-11 15:35:03 +05:30
parent fc31aea95b
commit 367c36e3f8

View File

@@ -45,26 +45,24 @@ const Samples = () => {
<h1>Samples</h1>
<div className='samples-container'>
<table id="samples-table">
<table id="samples-table">
<tr>
<th>Sample Name</th>
<th>Classification</th>
<th>Device</th>
<th>abs427</th>
<th>led1Average</th>
{/* <th>led2Average</th> */}
<th>abs555</th>
<th>predictedDenovixRatio</th>
<th>led3Average</th>
<th>Dev ratio</th>
<th>Time</th>
</tr>
{samples.map((sample, index) => (
<tr key={index} className='samples-table-tr'>
<td>{sample.name}</td>
<td>{sample.prdClassification}</td>
<td>{sample.deviceId}</td>
<td>{sample.abs427 || 'NA'}</td>
<td>{sample.led1Average}</td>
{/* <td>{sample.led2Average || 'NA'}</td> */}
<td>{sample.abs555 || 'NA'}</td>
<td>{sample.predictedDenovixRatio}</td>
<td>{sample.led3Average || 'NA'}</td>
<td>{sample.deviceRatio}</td>
<td>{sample.testTime}</td>
</tr>
))}