new prd classification
This commit is contained in:
@@ -45,25 +45,27 @@ 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>led1Average</th>
|
||||
<th>abs427</th>
|
||||
{/* <th>led2Average</th> */}
|
||||
<th>led3Average</th>
|
||||
<th>Dev ratio</th>
|
||||
<th>abs555</th>
|
||||
<th>predictedDenovixRatio</th>
|
||||
<th>Time</th>
|
||||
</tr>
|
||||
{samples.map((sample, index) => (
|
||||
<tr key={index} className='samples-table-tr'>
|
||||
<td>{sample.name}</td>
|
||||
<td>{sample.deviceId}</td>
|
||||
<td>{sample.led1Average}</td>
|
||||
{/* <td>{sample.led2Average || 'NA'}</td> */}
|
||||
<td>{sample.led3Average || 'NA'}</td>
|
||||
<td>{sample.deviceRatio}</td>
|
||||
<td>{sample.testTime}</td>
|
||||
<td>{sample.name}</td>
|
||||
<td>{sample.prdClassification}</td>
|
||||
<td>{sample.deviceId}</td>
|
||||
<td>{sample.abs427 || 'NA'}</td>
|
||||
{/* <td>{sample.led2Average || 'NA'}</td> */}
|
||||
<td>{sample.abs555 || 'NA'}</td>
|
||||
<td>{sample.predictedDenovixRatio}</td>
|
||||
<td>{sample.testTime}</td>
|
||||
</tr>
|
||||
))}
|
||||
</table>
|
||||
|
||||
Reference in New Issue
Block a user