LP 1779467: Fix typo in circ/renew/app.js.
authorJason Stephenson <jason@sigio.com>
Mon, 12 Nov 2018 14:03:31 +0000 (09:03 -0500)
committerJason Stephenson <jason@sigio.com>
Mon, 12 Nov 2018 14:36:33 +0000 (09:36 -0500)
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 <jason@sigio.com>
Open-ILS/web/js/ui/default/staff/circ/renew/app.js

index e4b7858..8666557 100644 (file)
@@ -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));
         });