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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc (-2 / +1 lines)
Lines 780-786 Link Here
780
                    table_dt.column([% loop.count - 1 %]).search(library_id ? '^'+library_id+'$' : '');
780
                    table_dt.column([% loop.count - 1 %]).search(library_id ? '^'+library_id+'$' : '');
781
                [% CASE 'category' %]
781
                [% CASE 'category' %]
782
                    let category_id = $("#categorycode_filter").val() || "";
782
                    let category_id = $("#categorycode_filter").val() || "";
783
                    patrons_table.find('thead tr:eq(1) th[data-filter="categories"] select').val(category_id);
783
                    patrons_table.find('thead tr:eq(1) th[data-filter="categories"] select').val(category_id.toLowerCase());
784
                    table_dt.column([% loop.count - 1 %]).search(category_id ? '^'+category_id+'$' : '');
784
                    table_dt.column([% loop.count - 1 %]).search(category_id ? '^'+category_id+'$' : '');
785
                [% END %]
785
                [% END %]
786
            [% END %]
786
            [% END %]
787
- 

Return to bug 35743