Resolution notes popup appears when manually changing state to "Resolved" Issue The resolution notes popup is triggered when manually changing the incident state to "Resolved" from the state field, which was not expected. The Requirement was that it should only appear when the "Resolve" UI Action is clicked. Steps to reproduce: 1. Opening an open incident 2. changing the state to "Resolved" from the dropdown, and observing the popup display.ReleaseAll ReleasesCauseThe issue was introduced after modifications to the Incident Resolve UI Action, changing the resolved state value from a custom value (150) to the OOTB value (6). This change caused the Resolution Notes modal to trigger when manually changing the state to "Resolved", as the on-change client script's trigger condition matched the new state value. Resolution1. Duplicate the OOB on-change client script for the resolution notes modal to avoid modifying the original script directly. 2. Modify the trigger condition in the duplicated script to adjust when the popup is displayed, ensuring it only triggers when the "Resolve" UI Action is used instead of manual state changes. 3. Test the changes to confirm the popup no longer appears when manually changing the state to "Resolved".