From 612ef202e96cd3337fa66a25a2467c4dcdbcf22d Mon Sep 17 00:00:00 2001 From: Chris Sharp Date: Wed, 29 Nov 2017 12:45:21 -0500 Subject: [PATCH] LP#1729922 Display most recent transit. Currently, the new "most recent transit" feature under Item status in the web client shows the oldest transit. Reverse sorting so the most recent displays instead. Signed-off-by: Chris Sharp --- 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 d1e8b5ed7d..549e8a371c 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 @@ -836,7 +836,7 @@ function($scope , $q , $location , $routeParams , $timeout , $window , egCore , egCore.pcrud.search('atc', {target_copy : copyId}, - {order_by : {atc : 'source_send_time DESC'}} + {order_by : {atc : 'source_send_time ASC'}} ).then(null, null, function(transit) { $scope.transit = transit; -- 2.11.0