diff options
author | Matjaž Črnko <m.crnko@txt.si> | 2023-06-16 11:24:06 +0200 |
---|---|---|
committer | Matjaž Črnko <m.crnko@txt.si> | 2023-06-16 11:24:06 +0200 |
commit | e2aeaa191688bb245113f8280e7e1edd44c08bf3 (patch) | |
tree | 116fe3466f03be97b1075c86e0e3ceaada5dc761 /modern/src/common/util | |
parent | cd5b1513be814f27dcb6196779af772d9fdf656f (diff) | |
download | trackermap-web-e2aeaa191688bb245113f8280e7e1edd44c08bf3.tar.gz trackermap-web-e2aeaa191688bb245113f8280e7e1edd44c08bf3.tar.bz2 trackermap-web-e2aeaa191688bb245113f8280e7e1edd44c08bf3.zip |
fix: Modern sync Speed, Distance and Voltage Position Attribute formatters
Diffstat (limited to 'modern/src/common/util')
-rw-r--r-- | modern/src/common/util/formatter.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modern/src/common/util/formatter.js b/modern/src/common/util/formatter.js index 610b8dd0..3ef83dba 100644 --- a/modern/src/common/util/formatter.js +++ b/modern/src/common/util/formatter.js @@ -19,6 +19,8 @@ export const formatPercentage = (value) => `${value}%`; export const formatTemperature = (value) => `${value}°C`; +export const formatVoltage = (value, t) => `${value} ${t('sharedVoltAbbreviation')}`; + export const formatTime = (value, format, hours12) => { if (value) { const m = moment(value); |