From 08babbe0961ff422bb30b4688e076a867d282509 Mon Sep 17 00:00:00 2001 From: "a. bellenir" Date: Wed, 27 Jun 2018 16:20:47 -0400 Subject: [PATCH] LP1778810: Copy Buckets Request Selected Copies function passed to map was missing 'return' keyword, producing list of [undefined, undefined, ...] Signed-off-by: a. bellenir --- Open-ILS/web/js/ui/default/staff/cat/bucket/copy/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/web/js/ui/default/staff/cat/bucket/copy/app.js b/Open-ILS/web/js/ui/default/staff/cat/bucket/copy/app.js index a51eef475f..b433915704 100644 --- a/Open-ILS/web/js/ui/default/staff/cat/bucket/copy/app.js +++ b/Open-ILS/web/js/ui/default/staff/cat/bucket/copy/app.js @@ -532,7 +532,7 @@ function($scope, $q , $routeParams , $timeout , $window , $uibModal , bucketSvc $scope.requestItems = function() { var copy_list = $scope.gridControls.selectedItems().map( function (i) { - i.id; + return i.id; } ); -- 2.11.0