From b9b71b2015f6eeaa8d0638bf1eb359bbedb2a212 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Thu, 13 Feb 2025 21:21:20 +0200 Subject: [PATCH] calendar month title fix --- client/modules/crm/src/views/calendar/calendar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/modules/crm/src/views/calendar/calendar.js b/client/modules/crm/src/views/calendar/calendar.js index b63257d8ee..3fb8e9cbee 100644 --- a/client/modules/crm/src/views/calendar/calendar.js +++ b/client/modules/crm/src/views/calendar/calendar.js @@ -453,7 +453,7 @@ class CalendarView extends View { start + this.rangeSeparator + end : start; } else { - title = moment(view.currentStart).format(format); + title = this.dateToMoment(view.currentStart).format(format); } if (this.options.userId && this.options.userName) {