From 5134f0cfcdc97a210250d92a0e9c3593314eda9a Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Mon, 27 Feb 2017 12:32:45 -0500 Subject: [PATCH] LP#1576435 Inactive patron search propagation rapair Fix a small code thinko in the propagation of the 'inactive' flag for patron-editor duplicate patron searches. Signed-off-by: Bill Erickson Signed-off-by: Kathy Lussier --- Open-ILS/web/js/ui/default/staff/circ/patron/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/web/js/ui/default/staff/circ/patron/app.js b/Open-ILS/web/js/ui/default/staff/circ/patron/app.js index 28038a0337..c00d5a5b5c 100644 --- a/Open-ILS/web/js/ui/default/staff/circ/patron/app.js +++ b/Open-ILS/web/js/ui/default/staff/circ/patron/app.js @@ -897,7 +897,7 @@ function($scope, $q, $routeParams, $timeout, $window, $location, egCore, $scope.searchArgs[key] = val.value; }); if (propagate_inactive) { - $scope.searchArgs[inactive] = propagate_inactive; + $scope.searchArgs.inactive = propagate_inactive; } } -- 2.43.2