Opening the form of a record for second time from a list redirects to Service Portal homepage when using the Browser back button. Issue In Service Portal, when we open the record from the list view, hit the browser back button, and open the record again, we get redirected to service portal homepage.CauseThis issue is caused if the customer has 'NewRocket Related List' widget on 'form' page/any any custom page they cloned from form page.This widget adds an event listener to $rootscope which it never cleans up. So when you go to the form, it looks for data_table.click event and it changes the urlResolutionTo resolve the issue, we will need to remove that widget from the page or disable that event listener. To disable the event listener, remove the below code from the widget client controller : $rootScope.$on('data_table.click', function(event,obj) { console.log(obj); var link = {}; link.sys_id = obj.sys_id; link.table = obj.table; link.id = c.data.page; $location.search(link); })