diff options
author | K-J-Dod24 <kieran.dodson@complexus.uk> | 2023-05-10 11:47:31 +0100 |
---|---|---|
committer | K-J-Dod24 <kieran.dodson@complexus.uk> | 2023-05-10 11:47:31 +0100 |
commit | f11a92bdbc68df4696ed698b618420f643e39d42 (patch) | |
tree | 778bbe2f45f18609cf11f390796307c7d5edf293 /modern/src/common | |
parent | 172646bb707d26780a97838b5d44a2be8eeafbb3 (diff) | |
download | trackermap-web-f11a92bdbc68df4696ed698b618420f643e39d42.tar.gz trackermap-web-f11a92bdbc68df4696ed698b618420f643e39d42.tar.bz2 trackermap-web-f11a92bdbc68df4696ed698b618420f643e39d42.zip |
removed duplicates
Diffstat (limited to 'modern/src/common')
-rw-r--r-- | modern/src/common/components/PositionValue.js | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/modern/src/common/components/PositionValue.js b/modern/src/common/components/PositionValue.js index 56114ed3..525a7047 100644 --- a/modern/src/common/components/PositionValue.js +++ b/modern/src/common/components/PositionValue.js @@ -57,10 +57,6 @@ const PositionValue = ({ position, property, attribute }) => { return value != null ? formatDistance(value, distanceUnit, t) : ''; case 'hours': return value != null ? formatNumericHours(value, t) : ''; - case 'coolantTemp': - return formatCelsius(value); - case 'engineTemp': - return formatCelsius(value); default: if (typeof value === 'number') { return formatNumber(value); |