From 11ced0df2d2ca7eba660704a06fd9e8b383f3a0f Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 15 Nov 2021 10:32:30 +0100 Subject: [PATCH] Bug 29477: Flatpickr - default to 23:59 for the time part It was defaulting to 12:00 which was an unexpected change in behaviour caused by flatpickr switch. Test plan: On the circulation view, check some items out and play with the time part and "Remember for session". The behaviour must be correct, ie. the same as prior to flatpickr switch. Signed-off-by: David Nind Signed-off-by: Tomas Cohen Arazi Signed-off-by: Jonathan Druart https://bugs.koha-community.org/show_bug.cgi?id=21729 --- koha-tmpl/intranet-tmpl/prog/en/includes/calendar.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/calendar.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/calendar.inc index 6464b8a0f5..117dbd9960 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/calendar.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/calendar.inc @@ -43,6 +43,8 @@ nextArrow: '', prevArrow: '', time_24hr: flatpickr_timeformat, + defaultHour: 23, + defaultMinute: 59, locale: { "firstDayOfWeek": calendarFirstDayOfWeek }, -- 2.20.1