Bug 35743: Fix patron's category selection in the column filter
The "category" filter is not selected in the column filter dropdown.
Test plan:
0. Do not apply this patch
1. Search for patron, select a patron's category
=> Notice that the "Category" column has a column filter, but no
option is selected
2. Apply the patch
3. Repeat 1
=> The "Category" column has the option you selected in the filter
block.
Signed-off-by: Owen Leonard <oleonard@myacpl.org>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
(cherry picked from commit 426324062d
)
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
This commit is contained in:
parent
56b675687f
commit
d7d8bcecdf
1 changed files with 1 additions and 1 deletions
|
@ -780,7 +780,7 @@
|
|||
table_dt.column([% loop.count - 1 %]).search(library_id ? '^'+library_id+'$' : '');
|
||||
[% CASE 'category' %]
|
||||
let category_id = $("#categorycode_filter").val() || "";
|
||||
patrons_table.find('thead tr:eq(1) th[data-filter="categories"] select').val(category_id);
|
||||
patrons_table.find('thead tr:eq(1) th[data-filter="categories"] select').val(category_id.toLowerCase());
|
||||
table_dt.column([% loop.count - 1 %]).search(category_id ? '^'+category_id+'$' : '');
|
||||
[% END %]
|
||||
[% END %]
|
||||
|
|
Loading…
Reference in a new issue