CEC-3519 Add car version history (#260)

* CEC-3519 Add car version history
CEC-3455 Delete button is icon and remove column
CEC-3496 Fix Issue delete

* smell

* Remove tab from issues details page

* Fix date format
This commit is contained in:
John Wu
2023-01-13 15:29:31 -08:00
committed by GitHub
parent 19ad379168
commit c5a5839d41
16 changed files with 889 additions and 365 deletions

View File

@@ -116,7 +116,26 @@ const vehiclesAPI = {
},
getCANSignals: async (vin, vehicle) => {
return signals;
}
},
getVersionLog: async (vin) => ({
"data": [
{
"id": 1,
"vin": "${vin}",
"version_source": "TREX",
"version": "0.9.56",
"created_at": "2023-01-13T02:11:33.327214Z"
},
{
"id": 2,
"vin": "${vin}",
"version_source": "DBC",
"version": "386c18977a1be3cda60c953e5902c680dbe82b89523f2527e80cd9db863db991",
"created_at": "2023-01-13T02:11:33.330932Z"
}
],
"total": 2
})
};
export default vehiclesAPI;