Tags created via Insert and Stay in system definition do not appear for users and groupsDescriptionTags created through system definition menu are not displaying for users/groups, except when insert and stay is used.Steps to Reproduce Navigate to System Definition > TagsCreate a new Tag and name it TestTag01Change viewable to Groups and UsersAssign groups or users to the record, and then SaveChange the name to TestTag02 and then insert and stayImpersonate user assigned in recordAdd tag to incident recordExpected behavior: User should see all tags that have been assigned the user's group or user.Actual behavior: User is only able to see the first tag saved and not any created via insert and stay.WorkaroundModify the following Business rules as follows: Label - Audience Group sync Remove the Filter Condition "Groups changes"Add the following condition to the syncGroupListChanges() function in the script field if (current.operation() === 'update' && !current.group_list.changes()) return; Label - Audience User sync Remove the Filter Condition "Users changes"Add the following condition to the syncUserListChanges() function in the script field if (current.operation() === 'update' && !current.user_list.changes()) return;Related Problem: PRB661920