From 3f88c56f7eafdc53ff7be69ad91910a281357fa4 Mon Sep 17 00:00:00 2001 From: Dan Wells Date: Wed, 10 Oct 2018 16:07:24 -0400 Subject: [PATCH] LP#1796978 Realign working copy refresh with proper condition The "working copy" grid needs to update whenever the copy data above updates. I *believe* this aligns the refresh with its intended condition. This appears to have come about via bug #1732761, so retesting of that fix may be in order. Signed-off-by: Dan Wells Signed-off-by: Jason Stephenson Signed-off-by: Cesar Velez --- Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js b/Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js index d32f943af2..7ef69d4a67 100644 --- a/Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js +++ b/Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js @@ -1808,9 +1808,9 @@ function($scope , $q , $window , $routeParams , $location , $timeout , egCore , }); }); } + } else { + $scope.workingGridDataProvider.refresh(); } - } else { - $scope.workingGridDataProvider.refresh(); } }); -- 2.43.2