From 86baaad9d00dbe808d89d5a43325b115fa20e564 Mon Sep 17 00:00:00 2001 From: nathan Date: Fri, 26 Aug 2022 16:16:04 -0600 Subject: [PATCH] Calendar: Fix missing space in date header for week view when 2 months are shown with a d.m.Y format --- calendar/js/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calendar/js/app.ts b/calendar/js/app.ts index 0f567257ea..a093e3fa6a 100644 --- a/calendar/js/app.ts +++ b/calendar/js/app.ts @@ -3961,7 +3961,7 @@ export class CalendarApp extends EgwApp { if (!month_before_day) { - range += egw.lang(flatpickr.formatDate(first_format, "F")); + range += " " + egw.lang(flatpickr.formatDate(first_format, "F")); } if (first.getFullYear() != last.getFullYear() && datefmt[0] != 'Y') {