diff options
author | Anton Tananaev <anton@traccar.org> | 2022-05-06 14:27:17 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-05-06 14:27:17 -0700 |
commit | e3460181198fa98c5320ebe28650160603797f33 (patch) | |
tree | a340b2a35ba17e1fdafc5ee69efca97300d9a367 /modern/src/common/formatter.js | |
parent | a0406374030e930b8bd8032900e83b4a432ae28a (diff) | |
download | trackermap-web-e3460181198fa98c5320ebe28650160603797f33.tar.gz trackermap-web-e3460181198fa98c5320ebe28650160603797f33.tar.bz2 trackermap-web-e3460181198fa98c5320ebe28650160603797f33.zip |
Fix style issues
Diffstat (limited to 'modern/src/common/formatter.js')
-rw-r--r-- | modern/src/common/formatter.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modern/src/common/formatter.js b/modern/src/common/formatter.js index 06e3b12f..08e29bc4 100644 --- a/modern/src/common/formatter.js +++ b/modern/src/common/formatter.js @@ -1,5 +1,7 @@ import moment from 'moment'; -import { distanceFromMeters, distanceUnitString, speedFromKnots, speedUnitString, volumeFromLiters, volumeUnitString } from './converter'; +import { + distanceFromMeters, distanceUnitString, speedFromKnots, speedUnitString, volumeFromLiters, volumeUnitString, +} from './converter'; import { prefixString } from './stringUtils'; export const formatBoolean = (value, t) => (value ? t('sharedYes') : t('sharedNo')); |