From d9690221334d65e3a9a2a1dd0cc626676a71dd50 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 --- 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 df07c0553c..8b29e6c5d4 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 @@ -1167,7 +1167,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