new columns
This commit is contained in:
@@ -49,6 +49,7 @@ const Samples = () => {
|
||||
<tr>
|
||||
<th>Sample Name</th>
|
||||
<th>Device</th>
|
||||
<th>Classification</th>
|
||||
<th>led1Average</th>
|
||||
{/* <th>led2Average</th> */}
|
||||
<th>led3Average</th>
|
||||
@@ -57,13 +58,14 @@ const Samples = () => {
|
||||
</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 | 'NA'}</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>
|
||||
</tr>
|
||||
))}
|
||||
</table>
|
||||
|
||||
Reference in New Issue
Block a user