From 0a96395a4b646f901659936aa94c155028126e22 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Wed, 11 Nov 2020 02:53:46 +0000 Subject: [PATCH] Bug 26988: (follow-up) Adjust code to use api field names Signed-off-by: Tomas Cohen Arazi --- koha-tmpl/intranet-tmpl/prog/js/holds.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/holds.js b/koha-tmpl/intranet-tmpl/prog/js/holds.js index 748aab04c96..f6a941979de 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/holds.js +++ b/koha-tmpl/intranet-tmpl/prog/js/holds.js @@ -315,12 +315,12 @@ $(document).ready(function() { success: function( data ){ var dropdown = ""; $.each(data, function(index,library) { - if( preselected == library.branchcode ){ + if( preselected == library.library_id ){ selected = ' selected="selected" '; } else { selected = ""; } - dropdown += ''; + dropdown += ''; }); - this_dropdown.html( dropdown); + this_dropdown.html(dropdown); this_dropdown.data("loaded",1); $(".loading_"+hold_id).hide(); }, -- 2.29.2