From 5f296b978226a1f0f29fc7183bba61c70a2387e0 Mon Sep 17 00:00:00 2001 From: Jason Stephenson Date: Mon, 12 Nov 2018 09:03:31 -0500 Subject: [PATCH] LP 1779467: Fix typo in circ/renew/app.js. Had copyies for copies in one location and this prevented marking an item as Discard/Weed from working on the renew item interface. Signed-off-by: Jason Stephenson --- Open-ILS/web/js/ui/default/staff/circ/renew/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/web/js/ui/default/staff/circ/renew/app.js b/Open-ILS/web/js/ui/default/staff/circ/renew/app.js index e4b7858faf..86665574da 100644 --- a/Open-ILS/web/js/ui/default/staff/circ/renew/app.js +++ b/Open-ILS/web/js/ui/default/staff/circ/renew/app.js @@ -183,7 +183,7 @@ function($scope , $window , $location , egCore , egGridDataProvider , egCirc) { } $scope.showMarkDiscard = function(items) { - var copyies = []; + var copies = []; angular.forEach(items, function(item) { if (item.acp) copies.push(egCore.idl.toHash(item.acp)); }); -- 2.11.0