add new samples columns

This commit is contained in:
Pritimay Sarkar
2023-12-08 15:34:46 +05:30
parent 48c9bacb4f
commit 4da937673c

View File

@@ -50,10 +50,10 @@ const Samples = () => {
<th>Sample Name</th>
<th>Device</th>
<th>Classification</th>
<th>led1Average</th>
{/* <th>led2Average</th> */}
<th>led3Average</th>
<th>Dev ratio</th>
<th>abs1</th>
<th>abs2</th>
<th>abs3</th>
<th>PDR</th>
<th>Time</th>
</tr>
{samples.map((sample, index) => (
@@ -61,10 +61,10 @@ const Samples = () => {
<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.abs1}</td>
<td>{sample.abs2 || 'NA'}</td>
<td>{sample.abs3 || 'NA'}</td>
<td>{sample.predictedDenovixRatio}</td>
<td>{sample.testTime}</td>
</tr>
))}