From: Bill Erickson Date: Thu, 1 Jun 2017 20:11:11 +0000 (-0400) Subject: LP#1695007 Webstafff circ group summary display fix X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=4105f8d3d4bc214104efa997bb5bd84bd13a6fb8;p=evergreen%2Fpines.git LP#1695007 Webstafff circ group summary display fix Repair display of the Total Circs, Last Renewed On, and Renewal Workstation fields in the web staff item summary Recent Circ History tab Most Recent Circ Group Display. Signed-off-by: Bill Erickson Signed-off-by: Mike Rylander --- diff --git a/Open-ILS/web/js/ui/default/staff/cat/item/app.js b/Open-ILS/web/js/ui/default/staff/cat/item/app.js index dabc637d23..7bd717d3b6 100644 --- a/Open-ILS/web/js/ui/default/staff/cat/item/app.js +++ b/Open-ILS/web/js/ui/default/staff/cat/item/app.js @@ -1476,7 +1476,7 @@ function($scope , $q , $location , $routeParams , $timeout , $window , egCore , 'open-ils.circ.renewal_chain.retrieve_by_circ.summary', egCore.auth.token(), $scope.circ.id() ).then(function(summary) { - $scope.circ_summary = summary.summary; + $scope.circ_summary = summary; }); if (!loadPrev) return;