CEC-2611 Show HMI online status (#205)

* CEC-2611 Show HMI online status
Update car update progress to show ECU
Refresh car details car updates tab

* clean up
This commit is contained in:
John Wu
2022-09-28 18:00:31 -07:00
committed by GitHub
parent 63e2d2b18f
commit 231df333b0
9 changed files with 214 additions and 96 deletions

View File

@@ -45,6 +45,7 @@ export const VehicleProvider = ({ children }) => {
}
cars.forEach((car) => {
car.connected = result[car.vin] || false;
car.connectedHMI = result[`2:${car.vin}`] || false;
});
} catch (e) {
logger.error(e.stack);