revert to old method of cls
This commit is contained in:
@@ -45,26 +45,24 @@ const Samples = () => {
|
|||||||
<h1>Samples</h1>
|
<h1>Samples</h1>
|
||||||
|
|
||||||
<div className='samples-container'>
|
<div className='samples-container'>
|
||||||
<table id="samples-table">
|
<table id="samples-table">
|
||||||
<tr>
|
<tr>
|
||||||
<th>Sample Name</th>
|
<th>Sample Name</th>
|
||||||
<th>Classification</th>
|
|
||||||
<th>Device</th>
|
<th>Device</th>
|
||||||
<th>abs427</th>
|
<th>led1Average</th>
|
||||||
{/* <th>led2Average</th> */}
|
{/* <th>led2Average</th> */}
|
||||||
<th>abs555</th>
|
<th>led3Average</th>
|
||||||
<th>predictedDenovixRatio</th>
|
<th>Dev ratio</th>
|
||||||
<th>Time</th>
|
<th>Time</th>
|
||||||
</tr>
|
</tr>
|
||||||
{samples.map((sample, index) => (
|
{samples.map((sample, index) => (
|
||||||
<tr key={index} className='samples-table-tr'>
|
<tr key={index} className='samples-table-tr'>
|
||||||
<td>{sample.name}</td>
|
<td>{sample.name}</td>
|
||||||
<td>{sample.prdClassification}</td>
|
|
||||||
<td>{sample.deviceId}</td>
|
<td>{sample.deviceId}</td>
|
||||||
<td>{sample.abs427 || 'NA'}</td>
|
<td>{sample.led1Average}</td>
|
||||||
{/* <td>{sample.led2Average || 'NA'}</td> */}
|
{/* <td>{sample.led2Average || 'NA'}</td> */}
|
||||||
<td>{sample.abs555 || 'NA'}</td>
|
<td>{sample.led3Average || 'NA'}</td>
|
||||||
<td>{sample.predictedDenovixRatio}</td>
|
<td>{sample.deviceRatio}</td>
|
||||||
<td>{sample.testTime}</td>
|
<td>{sample.testTime}</td>
|
||||||
</tr>
|
</tr>
|
||||||
))}
|
))}
|
||||||
|
|||||||
Reference in New Issue
Block a user