From: Bill Erickson Date: Mon, 27 Feb 2017 17:32:45 +0000 (-0500) Subject: LP#1576435 Inactive patron search propagation rapair X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=6b07dc757f3fc30f0f39db54b1d5d5ebed40b988;p=contrib%2FConifer.git 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 --- 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 ac17316678..b9644151de 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 @@ -853,7 +853,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; } }