Search results display out of order in Service PortalIssue In the Search Page widget, and with Facet Search disabled, records are displayed out of order using the following search query for laptop: /sp?id=search&q=-1ResolutionThe default Search Page widget displays the content based on the score as shown at /nav_to.do?uri=%2Fsp_widget.do%3Fsys_id%3Db8c57073cb10020000f8d856634c9cfc The Body HTML template includes the following code: <div role="list" ><div role="listitem" ng-repeat="item in data.results | orderBy:'-score' | limitTo:data.limit" class="panel-body b-b result-item"><div ng-include="item.templateID" data-index="{{$index}}"></div> Records are ordered by the score, which is the expected behavior. To display the records based on the order they are retrieved from the search sources, remove the orderBy part. Following is the modified code: <div role="list" ><!--<div role="listitem" ng-repeat="item in data.results | orderBy:'score':true | limitTo:data.limit" class="panel-body b-b ">--><div role="listitem" ng-repeat="item in data.results | limitTo:data.limit" class="panel-body b-b "><div ng-include="item.templateID"></div> Note: For best results, clone the widget, add the customizations or modifications, and then add the widget to the page search.