From fc990dcc50650862c4f12a1a530b98bbd36ea4b8 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Mon, 14 Sep 2020 22:37:38 -0700 Subject: Add location and battery level --- modern/src/common/formatter.js | 2 ++ 1 file changed, 2 insertions(+) (limited to 'modern/src/common') diff --git a/modern/src/common/formatter.js b/modern/src/common/formatter.js index 50841e1..9a61b17 100644 --- a/modern/src/common/formatter.js +++ b/modern/src/common/formatter.js @@ -10,6 +10,8 @@ const formatValue = (key, value) => { case 'speed': case 'course': return value.toFixed(1); + case 'batteryLevel': + return value + '%'; default: return value; } -- cgit v1.2.3