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",
},
{
id: "dtc",
label: "DTC",
id: "trouble_code",
label: "Trouble Code",
},
{
id: "status_byte",
label: "Status Code",
},
{
id: "epoch_usec",
@@ -190,7 +194,8 @@ const MainForm = ({ vin }) => {
</TableCell>
<TableCell>{dtc.vin}</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>
</TableRow>
))}