In the To-dos section of the ESC, when clicking checkboxes in HR Tasks, the page reloads and throws the user to the top of the list of HR TasksIssue The user is noticing an issue where, when they are creating some HR Tasks on their HR Cases, when viewing the HR Tasks in the To-dos section of the Employee Service Center (ESC) and clicking the checkboxes inside the tasks, the page reloads and redirects them back up to the top of the page unexpectedly. This can be very disorienting if the user is down the list of the HR Tasks and is suddenly back up at the top of the list.CauseThere is a custom Business Rule (BR) on the task table called "Set The Requestor Field" which is causing the issue.ResolutionAs mentioned, the "Set The Requestor Field" is the root of the issue. The custom BR updates a custom field titled "u_requestor", which triggers the record watcher from Service Portal to refresh the entire list of To-dos. The update behavior is expected.A possible workaround is listed below, and can be added to the shouldReloadList() function on the HRM Task List widget to accommodate the custom field: function shouldReloadList(recordWatchUpdate) { if (recordWatchUpdate.operation == "delete" || recordWatchUpdate.operation == "insert") return true; if (recordWatchUpdate.changes.length == 1) return recordWatchUpdate.changes[0] != 'comments' && recordWatchUpdate.changes[0] != 'work_notes' && recordWatchUpdate.changes[0] != 'approval_history' && recordWatchUpdate.changes[0] != 'u_requestor'; return recordWatchUpdate.changes.length > 0;}