From ee65883f974d99a3f642fd973f6f08301d27a168 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sat, 3 Jan 2026 19:34:14 +1100 Subject: internal: fix some widgets not respecting rounding scale --- services/Weather.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'services/Weather.qml') diff --git a/services/Weather.qml b/services/Weather.qml index bc1f11c..d04c537 100644 --- a/services/Weather.qml +++ b/services/Weather.qml @@ -24,7 +24,7 @@ Singleton { readonly property string sunset: cc ? Qt.formatDateTime(new Date(cc.sunset), Config.services.useTwelveHourClock ? "h:mm A" : "h:mm") : "--:--" function reload(): void { - let configLocation = Config.services.weatherLocation; + const configLocation = Config.services.weatherLocation; if (configLocation && configLocation !== "") { if (configLocation.indexOf(",") !== -1 && !isNaN(parseFloat(configLocation.split(",")[0]))) -- cgit v1.2.3-freya