View | Details | Raw Unified | Return to bug 30718
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/curbside_pickups.tt (-1 / +1 lines)
Lines 554-560 Link Here
554
554
555
                var currentDate = $(this).val();
555
                var currentDate = $(this).val();
556
556
557
                let selectedDate = dayjs(currentDate, get_dateformat_str(dateformat_pref).toUpperCase());
557
                let selectedDate = dayjs(currentDate);
558
558
559
                let pickupSlots = [];
559
                let pickupSlots = [];
560
                let available_count = 0;
560
                let available_count = 0;
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-curbside-pickups.tt (-2 / +1 lines)
Lines 363-369 Link Here
363
                let branchcode = $("#pickup-branch").val();
363
                let branchcode = $("#pickup-branch").val();
364
                let policy = policies[branchcode];
364
                let policy = policies[branchcode];
365
365
366
                let selectedDate = dayjs(currentDate, get_dateformat_str(dateformat_pref).toUpperCase());
366
                let selectedDate = dayjs(currentDate);
367
367
368
                let pickupSlots = [];
368
                let pickupSlots = [];
369
                let available_count = 0;
369
                let available_count = 0;
370
- 

Return to bug 30718