Right-click menu for the field is not working as expectedDescriptionThe form record appears to be broken and the users are unable to use Right-click menu for the fields on the formRelease or EnvironmentAllCauseThe issue might be due to an onChange Client script which might have the variable newValue set of scope to the onChange function making the variable undefined and hence hindering the form loading fully.ResolutionModify the onChange Client script such that the newValue variable is defined within the onChange function.function onChange(control, oldValue, newValue, isLoading, isTemplate) {if (isLoading || newValue === '') { return; }if(newValue == 'xxx') { g_form.setValue('assignment_group', 'xxx'); }}