Discussion posts and replies are publicly visible
In selectedLabels,use if(isnull(local!selectedUser), {}, {local!selectedUser.name}) to return empty list instead of {null}, and in saveInto add if(or(isnull(save!value), length(save!value)=0), a!save(local!selectedUser, null), ...) to clear when text is erased.Add validations to check if typed text matches valid selection, and disable submit button with disabled: isnull(local!selectedUser) to prevent submission.