From 8f3b27e86ac9b9a94bdd5319501ecb7e056ec595 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sat, 2 Jul 2022 11:56:45 -0700 Subject: Fix course values --- modern/src/common/util/formatter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modern') 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; } -- cgit v1.2.3