From 94ad40c5c541db9867fa340aa8f8c6e6d2250323 Mon Sep 17 00:00:00 2001 From: Foxlike Creature <124364698+FoxlikeCreature@users.noreply.github.com> Date: Mon, 8 Jun 2026 10:06:46 +0700 Subject: [PATCH] fix: missing colon in 24h lock forecast time (#1520) Co-authored-by: FoxlikeCreature --- modules/lock/weather/Forecast.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/lock/weather/Forecast.qml b/modules/lock/weather/Forecast.qml index d23d357e..0ebfd7e2 100644 --- a/modules/lock/weather/Forecast.qml +++ b/modules/lock/weather/Forecast.qml @@ -95,7 +95,7 @@ StyledRect { StyledText { Layout.topMargin: Tokens.spacing.extraSmall Layout.alignment: Qt.AlignHCenter - text: hour.index === 0 ? qsTr("Now") : Qt.formatDateTime(new Date(hour.cond.timestamp.replace("T", " ")), GlobalConfig.services.useTwelveHourClock ? "ha" : "hh00") + text: hour.index === 0 ? qsTr("Now") : Qt.formatDateTime(new Date(hour.cond.timestamp.replace("T", " ")), GlobalConfig.services.useTwelveHourClock ? "ha" : "hh:00") color: Colours.palette.m3onSurfaceVariant font: Tokens.font.body.medium }