From 473688892df7ee175d44930c5cea438d44d01992 Mon Sep 17 00:00:00 2001 From: Jane Sandberg Date: Wed, 5 Feb 2020 19:44:52 -0800 Subject: [PATCH 1/1] LP#1845706 (follow-up): Fix callback Signed-off-by: Jane Sandberg Signed-off-by: Mike Rylander Signed-off-by: Dawn Dale --- Open-ILS/web/js/ui/default/staff/circ/patron/items_out.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/web/js/ui/default/staff/circ/patron/items_out.js b/Open-ILS/web/js/ui/default/staff/circ/patron/items_out.js index a10874e5cc..26341c1844 100644 --- a/Open-ILS/web/js/ui/default/staff/circ/patron/items_out.js +++ b/Open-ILS/web/js/ui/default/staff/circ/patron/items_out.js @@ -424,7 +424,7 @@ function($scope , $q , $routeParams , $timeout , egCore , egUser , patronSvc , id: circ.target_copy().id(), barcode: circ.target_copy().barcode(), circ_lib: circ.target_copy().circ_lib().id() - }).then($timeout(reset_page,1000)) // reset after each, because rejecting one stops the $q.all() chain + }).then(() => $timeout(reset_page,1000)) // reset after each, because rejecting one stops the $q.all() chain }); } $scope.mark_missing = function(items) { -- 2.43.2