fix device run time

This commit is contained in:
Pritimay Sarkar
2024-02-08 20:42:14 +05:30
parent 7e3226c6d2
commit 83dc9f068f
2 changed files with 20 additions and 13 deletions

View File

@@ -43,7 +43,7 @@ const Diagnostics = () => {
)} */}
<h1>Diagnostics</h1>
<h1>Device Data</h1>
<div className='samples-container'>
<table id="samples-table">
@@ -56,7 +56,7 @@ const Diagnostics = () => {
<tr key={index} className='samples-table-tr'>
<td>{sample.deviceId}</td>
<td>{sample.deviceData || 'NA'}</td>
<td>{moment(sample.testTime).format('HH:mm:ss')}</td>
<td>{moment(sample.runTime).format('HH:mm:ss')}</td>
</tr>
))}
</table>