Updating the script field on a UI Action is making the UI action to stop working in Workspace but still working on UI16<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } ProblemThere is a custom UI action that is not working in the Workspace after making any modifications to the script, including non-functional changes such as removing commented lines or adding whitespace. The button works correctly in the Classic UI view, even after script changes. Steps to reproduce Try the custom UI action on UI16 and workspace and confirm it works in both sides Note: The code using on the script applies for UI16 and Workspace Go to the UI action definition and update any part of the field script and save itGo back to UI16 and try it and works fineGo back to Workspace and try it and stopped working Root CauseThe workspace script was not updated, and there is an out-of-the-box (OOTB) business rule ('Set Clients Script V2 Template') that populates the Workspace Client Script field when the UI action is loaded. When the script is saved, the Workspace Client Script field is also saved with the default value assigned, causing nothing to be executed on workspace as no code is there and triggering fine in UI16.Steps to Resolve1. Go to the UI action definition2. Update the code on the script field3. Clear the data value from field Workspace Client Script4. Save the record Note: This applies only when the UI action uses script code that can be used on UI16 and workspace and nothing on Workspace Client Script field.