add new class column

This commit is contained in:
Pritimay Sarkar
2023-12-14 15:31:43 +05:30
parent c20197c40a
commit a751b55647

View File

@@ -48,7 +48,9 @@ const Samples = () => {
<table id="samples-table">
<tr>
<th>Sample Name</th>
<th>Class</th>
<th>Pdr Class</th>
<th>Dev Ratio Class</th>
<th>Dev Ratio</th>
<th>Device</th>
<th>abs1</th>
{/* <th>led2Average</th> */}
@@ -61,6 +63,8 @@ const Samples = () => {
<tr key={index} className='samples-table-tr'>
<td>{sample.name || sample._id}</td>
<td>{sample.prdClassification}</td>
<td>{sample.deviceRatioClass}</td>
<td>{sample.deviceRatio}</td>
<td>{sample.deviceId}</td>
<td>{sample?.abs1?.toFixed(4)}</td>
{/* <td>{sample.led2Average || 'NA'}</td> */}