add new samples columns
This commit is contained in:
@@ -50,10 +50,10 @@ const Samples = () => {
|
|||||||
<th>Sample Name</th>
|
<th>Sample Name</th>
|
||||||
<th>Device</th>
|
<th>Device</th>
|
||||||
<th>Classification</th>
|
<th>Classification</th>
|
||||||
<th>led1Average</th>
|
<th>abs1</th>
|
||||||
{/* <th>led2Average</th> */}
|
<th>abs2</th>
|
||||||
<th>led3Average</th>
|
<th>abs3</th>
|
||||||
<th>Dev ratio</th>
|
<th>PDR</th>
|
||||||
<th>Time</th>
|
<th>Time</th>
|
||||||
</tr>
|
</tr>
|
||||||
{samples.map((sample, index) => (
|
{samples.map((sample, index) => (
|
||||||
@@ -61,10 +61,10 @@ const Samples = () => {
|
|||||||
<td>{sample.name}</td>
|
<td>{sample.name}</td>
|
||||||
<td>{sample.prdClassification | 'NA'}</td>
|
<td>{sample.prdClassification | 'NA'}</td>
|
||||||
<td>{sample.deviceId}</td>
|
<td>{sample.deviceId}</td>
|
||||||
<td>{sample.led1Average}</td>
|
<td>{sample.abs1}</td>
|
||||||
{/* <td>{sample.led2Average || 'NA'}</td> */}
|
<td>{sample.abs2 || 'NA'}</td>
|
||||||
<td>{sample.led3Average || 'NA'}</td>
|
<td>{sample.abs3 || 'NA'}</td>
|
||||||
<td>{sample.deviceRatio}</td>
|
<td>{sample.predictedDenovixRatio}</td>
|
||||||
<td>{sample.testTime}</td>
|
<td>{sample.testTime}</td>
|
||||||
</tr>
|
</tr>
|
||||||
))}
|
))}
|
||||||
|
|||||||
Reference in New Issue
Block a user