Angular function $location.search() is not working after upgradeDescriptionAfter upgrading from New York to Paris, code that uses the angular function $location.search() to perform a page redirection is no longer working as expected. The content of the page is not refreshed.Steps to Reproduce Develop a Service Portal widget that has a dependent UI Script performing a browser redirect with the following angular code statement:$location.search({"id" : "paris_issue_redirect_page"}); When executed the page redirect does not complete, the URL of the browser is changed but the page content is not refreshed.WorkaroundAfter carefully considering the severity and frequency of the issue, and the cost and risk of attempting a fix, it has been decided to not address this issue in any current or near future releases. We do not make this decision lightly, and we apologise for any inconvenience. This design is due to performance fixes avoiding a page call for the second time to load the portal. The workaround is to replace the statement: $location.search({"id" : "paris_issue_redirect_page"}); with the statement: location.search = "?id=paris_issue_redirect_page";Related Problem: PRB1453743