From 4105f8d3d4bc214104efa997bb5bd84bd13a6fb8 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Thu, 1 Jun 2017 16:11:11 -0400 Subject: [PATCH] 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 --- Open-ILS/web/js/ui/default/staff/cat/item/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.11.0