While Rejecting an Approval, add comments post and then click on reject also throws an errorDescriptionWhile Rejecting an Approval, hit "Reject UI Action" directly will throw an error: "Comments are required when rejecting an approval". Add comments, hit on "Post" and then hit on "Reject UI Action" throws the same error.Steps to Reproduce Instance : nyp4Version : New YorkGo to:https://nyp4.service-now.com/nav_to.do?uri=%2Fsysapproval_approver_list.do%3Fsysparm_query%3Dstate%253Drequested%26sysparm_first_row%3D1%26sysparm_view%3DOpen any of the approval record which is in "Requested" state.Follow the below steps-Click on: Reject UI Action -> Error -> enter comments -> post -> Reject UI Action -> ErrorError thown up is "Comments are required when rejecting an approval".If we follow the below steps it is working (if we don't hit on Pos and directly hit Reject Ui Action) :Click on: Reject UI Action -> Error -> enter comments -> Reject UI Action -> Rejected Successfully Could see the same/above behavior in Orlando.WorkaroundTo fix this the customer needs to update the `sysapproval_approver` UI Actions `Reject` (yes there are two that need to be updated) that check for comments to the following advanced script: (function(){ current.state = 'rejected'; var comments = false; if (current.comments.getJournalEntry(1) != undefined) { var lastComment = current.comments.getJournalEntry(1); var index = (current.comments.getJournalEntry(1)+'').indexOf(gs.getUserDisplayName()); if (index > -1 && index <= 22) comments = true; } if (!JSUtil.nil(current.comments) || comments) { current.update(); new ApprovalUserFeedback().rejected(current); }else{ gs.addErrorMessage(gs.getMessage("Comments are required when rejecting an approval")); current.state = 'requested'; current.setAbortAction(true);}})(); The UI Actions to update should be `sys_ui_action_846c5fcbc611227d00993730e69626fe` and `sys_ui_action_f268bda3c3511200f7d1ca3adfba8f27`.Related Problem: PRB1396608