aboutsummaryrefslogtreecommitdiff
path: root/modern/src/common/components
diff options
context:
space:
mode:
authorgeduxas <gediminas.vileikis@gmail.com>2023-09-20 09:31:36 +0000
committergeduxas <gediminas.vileikis@gmail.com>2023-09-20 09:31:36 +0000
commit3e2c5833ac8dbabb02569544359a61baaa489a76 (patch)
treee89bc803363f235fb707d29a3e1de5da2c03f55c /modern/src/common/components
parent925c51d94f25021cb4fbf77cee7b0cb7f611692b (diff)
downloadtrackermap-web-3e2c5833ac8dbabb02569544359a61baaa489a76.tar.gz
trackermap-web-3e2c5833ac8dbabb02569544359a61baaa489a76.tar.bz2
trackermap-web-3e2c5833ac8dbabb02569544359a61baaa489a76.zip
OBDSpeed expected as km/h not knots.
Diffstat (limited to 'modern/src/common/components')
-rw-r--r--modern/src/common/components/PositionValue.jsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/modern/src/common/components/PositionValue.jsx b/modern/src/common/components/PositionValue.jsx
index 58841939..60476177 100644
--- a/modern/src/common/components/PositionValue.jsx
+++ b/modern/src/common/components/PositionValue.jsx
@@ -13,6 +13,7 @@ import {
formatNumericHours,
formatPercentage,
formatSpeed,
+ formatSpeedKph,
formatTime,
formatTemperature,
formatVoltage,
@@ -53,8 +54,9 @@ const PositionValue = ({ position, property, attribute }) => {
case 'longitude':
return formatCoordinate('longitude', value, coordinateFormat);
case 'speed':
- case 'obdSpeed':
return value != null ? formatSpeed(value, speedUnit, t) : '';
+ case 'obdSpeed':
+ return value != null ? formatSpeedKph(value, speedUnit, t) : '';
case 'course':
return formatCourse(value);
case 'altitude':