From 06addcf0c8055ed79b014502fbdb49f017492f96 Mon Sep 17 00:00:00 2001 From: Adam Bowling Date: Tue, 26 Oct 2021 17:27:48 -0400 Subject: [PATCH] LP#1845556: Fixes spine label column not returning call number. Signed-off-by: Adam Bowling Signed-off-by: Terran McCanna --- Open-ILS/web/js/ui/default/staff/cat/printlabels/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/web/js/ui/default/staff/cat/printlabels/app.js b/Open-ILS/web/js/ui/default/staff/cat/printlabels/app.js index 11905ab49c..8560697797 100644 --- a/Open-ILS/web/js/ui/default/staff/cat/printlabels/app.js +++ b/Open-ILS/web/js/ui/default/staff/cat/printlabels/app.js @@ -168,7 +168,7 @@ function ($scope, $q, $window, $routeParams, $location, $timeout, egCore, egNet, , 'get_cn_for': function (copy) { var key = $scope.rendered_cn_key_by_copy_id[copy.id]; if (key) { - var manual_cn = $scope.rendered_call_number_set[copy.id]; + var manual_cn = $scope.rendered_cn_key_by_copy_id[copy.id]; if (manual_cn && manual_cn.value) { return manual_cn.value; } else { -- 2.11.0