Agent workspace - Resolve UI Actions sets state to Closed instead of ResolvedIssue In Agent workspace clicking the Resolve UI Actions sets state to "Closed" instead of "Resolved"ReleaseAll Supported releasesCauseThe "Workspace Client Script" is modified in the UI ActionResolutionTo address the issue, please revert the Workspace Client Script to Out of Box. It should look similar to the below. One variable will be the state values, they could be different in your instance. function onClick() {//Set the 'Incident state' and 'State' values to 'Resolved', and display mandatory fieldsg_form.setValue('incident_state', 6);g_form.setValue('state', 6);g_form.setValue('resolved_by', g_user.userID, g_user.getFullName()); // Call the UI Action and skip the 'onclick' functiong_form.submit(g_form.getActionName());}