From 1e3c99f30882dedfc564f6384e8dfc33f9c78d90 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 --- 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 748aab04c9..f6a941979d 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.11.0