diff options
-rw-r--r-- | modern/src/common/util/formatter.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modern/src/common/util/formatter.js b/modern/src/common/util/formatter.js index fadc7788..034b0401 100644 --- a/modern/src/common/util/formatter.js +++ b/modern/src/common/util/formatter.js @@ -17,7 +17,7 @@ export const formatAlarm = (value, t) => (value ? t(prefixString('alarm', value) export const formatCourse = (value) => { const courseValues = ['\u2191', '\u2197', '\u2192', '\u2198', '\u2193', '\u2199', '\u2190', '\u2196']; - let normalizedValue = value % 360; + let normalizedValue = (value + 45 / 2) % 360; if (normalizedValue < 0) { normalizedValue += 360; } |