[open-ils-commits] [GIT] Evergreen ILS branch rel_3_2 updated. a4870699401027ae3c434bf306b797a398bdad5f
Evergreen Git
git at git.evergreen-ils.org
Thu Apr 11 17:36:19 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, rel_3_2 has been updated
via a4870699401027ae3c434bf306b797a398bdad5f (commit)
from a243bb057c70072be66eca2f581700658f7fc5e2 (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 a4870699401027ae3c434bf306b797a398bdad5f
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