From ec4ba0d0a71dd0b1469ec127047dcce7e35617c3 Mon Sep 17 00:00:00 2001 From: Alessandro Cocco Date: Mon, 2 May 2022 11:55:05 +0200 Subject: [PATCH] [Settings] Fix the time zone format A positive value is shown as '+X' instead of 'X' --- apps/setting/settings.js | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/setting/settings.js b/apps/setting/settings.js index a2a3dfbf0..981a7b864 100644 --- a/apps/setting/settings.js +++ b/apps/setting/settings.js @@ -479,6 +479,7 @@ function showLocaleMenu() { '< Back': ()=>showSystemMenu(), /*LANG*/'Time Zone': { value: settings.timezone, + format: v => (v > 0 ? "+" : "") + v, min: -11, max: 13, step: 0.5,