diff --git a/modules/dashboard/dash/Calendar.qml b/modules/dashboard/dash/Calendar.qml index 51638531..9be24e23 100644 --- a/modules/dashboard/dash/Calendar.qml +++ b/modules/dashboard/dash/Calendar.qml @@ -138,7 +138,7 @@ CustomMouseArea { horizontalAlignment: Text.AlignHCenter text: grid.locale.toString(dayItem.model.day) color: { - const dayOfWeek = dayItem.model.date.getUTCDay(); + const dayOfWeek = dayItem.model.date.getDay(); if (dayOfWeek === 0 || dayOfWeek === 6) return Colours.palette.m3secondary;