https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32126 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |major Keywords| |rel_22_11_candidate --- Comment #2 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- This is related to our changes on the page, but I haven't quite figured out yet what's going on. The visibility of the form on the page is managed with Javascript: $(document).ready(function(){ $("#add_field_form").hide(); $("#new_search_field").on("click",function(e){ e.preventDefault(); $("#add_field_form").show(); $(".dialog").hide(); $("#search_fields_list").hide(); }); $(".hide_form").on("click",function(e){ e.preventDefault(); $("#add_field_form").hide(); $(".dialog").show(); $("#search_fields_list,#toolbar").show(); }); -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.