From 8375ffc8e24e761713419db10c215cd65d7affac Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Tue, 16 Feb 2021 13:27:34 +0000 Subject: [PATCH] Bug 27703: Make ID of category select field unique Duplicate element IDs on the authorized values page are invalid and cause a problem with the JavaScript intended to submit the form when the category select field changes. This patch changes the ID of the label and the field and makes the corresponding change to the JavaScript. To test, apply the patch and go to Administration -> Authorized values. - Click an authorized value category to view its contents. - Using mouse or keyboard, make a selection from the "Show category" dropdown menu. - The form should submit automatically and direct you to the corresponding category. - Validate the HTML of the page and confirm that there are no errors. --- .../intranet-tmpl/prog/en/modules/admin/authorised_values.tt | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt index 3edb239e9c..bac32901d2 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt @@ -195,8 +195,8 @@

- - [% FOR c IN categories %] [% IF c == searchfield %] @@ -205,7 +205,6 @@ [% END %] [% END %] -

@@ -329,8 +328,7 @@ $("a.delete").click(function(){ return confirm(_("Are you sure you want to delete this authorized value?")); }); - $('#category').find("input:submit").hide(); - $('#searchfield').change(function() { + $('#category_search').change(function() { $('#category').submit(); }); $(".library_limitation").tooltip(); -- 2.11.0