Revert "LP#1642036 - Prevent race condition in Group Member Grid"
authorChris Sharp <csharp@georgialibraries.org>
Thu, 31 Jan 2019 14:55:39 +0000 (09:55 -0500)
committerChris Sharp <csharp@georgialibraries.org>
Thu, 31 Jan 2019 14:55:39 +0000 (09:55 -0500)
This reverts commit fc25827212daab2e6d3b36b81afec3c3dca36eeb.

Open-ILS/web/js/ui/default/staff/circ/patron/app.js

index 24aa858..a6131de 100644 (file)
@@ -1077,10 +1077,10 @@ function($scope,  $routeParams , $q , $window , $timeout,  $location , egCore ,
         if (redirect) return;
         // let initTab() fetch the user first so we can know the usrgroup
 
-        $timeout(grid.setQuery({
+        grid.setQuery({
             usrgroup : patronSvc.current.usrgroup(),
             deleted : 'f'
-        }), 500); // wrap in timeout to try to prevent race condition LP1642036
+        });
         $scope.totals.owed = patronSvc.patron_stats.fines.group_balance_owed;
     });