Fix for missing steering wheel position info

This commit is contained in:
Selim Mustafaev 2020-09-06 19:20:40 +03:00
parent 8d9fd40766
commit 196c287124

View File

@ -48,7 +48,7 @@ class Vehicle {
url: p.uri url: p.uri
}; };
}); });
v.isRightWheel = tech.wheel.position != 'LEFT'; v.isRightWheel = tech?.wheel?.position == 'RIGHT';
v.isJapanese = report.is_japanese_vehicle; v.isJapanese = report.is_japanese_vehicle;
v.addedDate = Date.now(); v.addedDate = Date.now();
v.events = []; v.events = [];