@@ -, +, @@ query - View the holds information for that title. - In the table of exising holds, expand the "Pickup library" dropdown for any of the entries. The list of libraries should be in order by library name. --- koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt @@ -1167,7 +1167,8 @@ data: function (params) { var search_term = (params.term === undefined) ? '' : params.term; var query = { - "q": JSON.stringify({"name":{"-like":search_term+'%'}}) + "q": JSON.stringify({"name":{"-like":search_term+'%'}}), + "_order_by": "name" }; return query; }, --