From bd60cd16314de1e599fad2d40424c2622bc8006c Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Fri, 16 Sep 2016 17:15:37 -0400 Subject: [PATCH] LP#1618992 Webstaff checkin error handler repairs Fix typo in browser staff checkin error handler which resulted in null errors any time a checkin failed instead of gracefully handling the error. Signed-off-by: Bill Erickson Signed-off-by: Jennifer Pringle Signed-off-by: Kathy Lussier --- Open-ILS/web/js/ui/default/staff/circ/checkin/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/web/js/ui/default/staff/circ/checkin/app.js b/Open-ILS/web/js/ui/default/staff/circ/checkin/app.js index d0407c6403..5428f166e7 100644 --- a/Open-ILS/web/js/ui/default/staff/circ/checkin/app.js +++ b/Open-ILS/web/js/ui/default/staff/circ/checkin/app.js @@ -219,7 +219,7 @@ function($scope , $q , $window , $location , egCore , checkinSvc , egGridDataPro angular.forEach(checkinSvc.checkins, function(ci, idx) { if (ci.index == row_item.index) pos = idx; }); - checkinSvc.checkin.splice(pos, 1); + checkinSvc.checkins.splice(pos, 1); })['finally'](function() { -- 2.43.2