CEC-4066-dtc-trouble-code (#313)

* first push

* remove dtc column
This commit is contained in:
das31
2023-04-06 18:59:03 -04:00
committed by GitHub
parent 909f1e72c2
commit 2fdac28b0b

View File

@@ -41,8 +41,12 @@ const MainForm = ({ vin }) => {
label: "ECU", label: "ECU",
}, },
{ {
id: "dtc", id: "trouble_code",
label: "DTC", label: "Trouble Code",
},
{
id: "status_byte",
label: "Status Code",
}, },
{ {
id: "epoch_usec", id: "epoch_usec",
@@ -190,7 +194,8 @@ const MainForm = ({ vin }) => {
</TableCell> </TableCell>
<TableCell>{dtc.vin}</TableCell> <TableCell>{dtc.vin}</TableCell>
<TableCell>{dtc.ecu_name}</TableCell> <TableCell>{dtc.ecu_name}</TableCell>
<TableCell>{dtc.dtc}</TableCell> <TableCell>{dtc.trouble_code}</TableCell>
<TableCell>{dtc.status_byte}</TableCell>
<TableCell>{formatDate(dtc.epoch_usec)}</TableCell> <TableCell>{formatDate(dtc.epoch_usec)}</TableCell>
</TableRow> </TableRow>
))} ))}