31 Oct
2022
31 Oct
'22
12:28 p.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26635 --- Comment #70 from Jonathan Druart <jonathan.druart+koha@gmail.com> --- Then we could use the following structure { _str: { location: { str: "General Stacks", type: "authorised_values" }, itemtype: { str: "Books", type: "itemtypes" } }, location: "GEN", itemtype: "BK", }
From a dev pov it will be easier to const location = r._str.location.str || r.location const itemtype = r._str.itemtype.str || r.itemtype
than to *know* that location is in _authorised_values and itemtype in _itemtypes! -- You are receiving this mail because: You are watching all bug changes.