Issue
Missing the Cart icon associated with catalog items in the search results page in the portal
Release
New York and further releases
Cause
Service Catalog Search source script has been updated in Newyork Release and from now on it shows catalog item's picture instead of Cart icon.
If a Catalog item picture is set it will get visible on the search result page.
Resolution
If you want to show cart icon, update the below line of script in 'Search page template' field of 'Catalogs' search source
https://<instancename>.service-now.com/nav_to.do?uri=sp_search_source.do?sys_id=c96eb1686721220023c82e08f585efff
From:
[code]<i ng-if="!item.picture && !item.icon" class="ta-icon fa fa-shopping-cart"></i>
[/code]
To:
[code]<i ng-if="!item.picture && item.icon" class="ta-icon fa fa-shopping-cart"></i>
[/code]