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

(-)a/koha-tmpl/intranet-tmpl/prog/js/cancel_booking_modal.js (-2 / +4 lines)
Lines 60-66 Link Here
60
            return;
60
            return;
61
        }
61
        }
62
62
63
        bookingsCount.innerHTML = parseInt(bookingsCount.innerHTML, 10) - 1;
63
        bookingsCount.innerHTML = bookingsCount.innerHTML.replace(
64
            /\d+/,
65
            match => parseInt(match, 10) - 1
66
        );
64
    }
67
    }
65
68
66
    function handleShowBsModal(e) {
69
    function handleShowBsModal(e) {
67
- 

Return to bug 38222