[open-ils-commits] [GIT] Evergreen ILS branch master updated. 0f950539f8479e4865bb1aa357da24330f0f4970

Evergreen Git git at git.evergreen-ils.org
Thu Apr 11 17:35:14 EDT 2019


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, master has been updated
       via  0f950539f8479e4865bb1aa357da24330f0f4970 (commit)
      from  4e73848a2fe317a4a40c5a29e3e2958418040c2f (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 0f950539f8479e4865bb1aa357da24330f0f4970
Author: Jane Sandberg <sandbej at linnbenton.edu>
Date:   Thu Mar 21 09:11:51 2019 -0700

    LP1821196: Remove arrow function from item status
    
    Signed-off-by: Jane Sandberg <sandbej at linnbenton.edu>
    Signed-off-by: Bill Erickson <berickxx at gmail.com>

diff --git a/Open-ILS/web/js/ui/default/staff/cat/item/app.js b/Open-ILS/web/js/ui/default/staff/cat/item/app.js
index 1ff71f3bc4..fc3e823dfa 100644
--- a/Open-ILS/web/js/ui/default/staff/cat/item/app.js
+++ b/Open-ILS/web/js/ui/default/staff/cat/item/app.js
@@ -427,7 +427,9 @@ function($scope , $q , $window , $location , $timeout , egCore , egNet , egGridD
 
     $scope.refreshGridData = function() {
         var chain = $q.when();
-        var all_items = itemSvc.copies.map((item) => {return item.id});
+        var all_items = itemSvc.copies.map(function(item) {
+            return item.id;
+        });
         angular.forEach(all_items.reverse(), function(i) {
             itemSvc.copies.shift();
             chain = chain.then(function() {

-----------------------------------------------------------------------

Summary of changes:
 Open-ILS/web/js/ui/default/staff/cat/item/app.js | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list