https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33639
Katrin Fischer <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA --- Comment #3 from Katrin Fischer <[email protected]> --- This fixes the problem, but it creates another: * When enumchron was already filled out, selecting an item group now will overwrite the entered value and replace it. I feel like the initial intention here was to avoid this and I think that would be correct: if ( ! $('input.items-enumchron').val() ) { I think if we keep the check, but change it to checking for the name with . not -, it might actually work? if ( ! $('input[name="items.enumchron"]').val() ) { -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
