CEC-624 Display update status info and ECU (#108)

This commit is contained in:
John Wu
2021-11-11 17:10:52 -08:00
committed by GitHub
parent 0f4047e966
commit 4318ce9048
2 changed files with 34 additions and 0 deletions

View File

@@ -24,6 +24,10 @@ const tableColumns = [
id: "status",
label: "Status",
},
{
id: "info",
label: "Info",
},
{
id: "error_code",
label: "Error",
@@ -106,6 +110,7 @@ const CarUpdateStatusTable = ({ carupdateid, token }) => {
{LocalDateTimeString(row.created)}
</TableCell>
<TableCell align="center">{row.status}</TableCell>
<TableCell align="center">{row.info}</TableCell>
<TableCell align="center">{row.error}</TableCell>
</TableRow>
))}