How to sort catalog items in alphabetical order on SC popular items page?Issue This article explains how to arrange the catalog items in alphabetical order in the Popular items page of the Service Portal.ReleaseAll Releases.ResolutionBy default, the items on the SC Popular items page are sorted based on popularity (That is, how many times a catalog item is used to place a request).To arrange the items in alphabetical order, change the following line of code in the HTML of the SC popular items widget from<div class="col-sm-6 col-md-4" ng-repeat="item in data.items | orderBy: '-count' | limitTo: data.limit"> to <div class="col-sm-6 col-md-4" ng-repeat="item in data.items | orderBy: 'name' | limitTo: data.limit">