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

(-)a/koha-tmpl/intranet-tmpl/prog/js/tables/bookings.js (-2 / +1 lines)
Lines 3-10 Link Here
3
var bookings_table;
3
var bookings_table;
4
$(document).ready(function () {
4
$(document).ready(function () {
5
    // Load bookings table on tab selection
5
    // Load bookings table on tab selection
6
    let filter_expired = true;
6
    $("#bookings-tab").on("click", function () {
7
    $("#bookings-tab").on("click", function () {
7
        let filter_expired = true;
8
        let additional_filters = {
8
        let additional_filters = {
9
            patron_id: patron_borrowernumber,
9
            patron_id: patron_borrowernumber,
10
            end_date: function () {
10
            end_date: function () {
11
- 

Return to bug 37141