diff options
Diffstat (limited to 'modules/dashboard')
| -rw-r--r-- | modules/dashboard/dash/Calendar.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/dashboard/dash/Calendar.qml b/modules/dashboard/dash/Calendar.qml index aacea8f..1860d9f 100644 --- a/modules/dashboard/dash/Calendar.qml +++ b/modules/dashboard/dash/Calendar.qml @@ -63,7 +63,7 @@ Column { anchors.centerIn: parent horizontalAlignment: Text.AlignHCenter - text: grid.locale.toString(day.model.date, "d") + text: Qt.formatDate(day.model.date, "d") color: day.model.today ? Colours.palette.m3onPrimary : day.model.month === grid.month ? Colours.palette.m3onSurfaceVariant : Colours.palette.m3outline } } |