Hi!
What is the best approach to show and Icon if the email of creator is in list. (View if is admin)
I saw some examples (Ticket System) but couldn´t replicate it.
//Set the isAdmin to False on event "onStart"
Set(isAdmin,false);
//Add the admin emails on event "onStart"
ClearCollect(AdminList,"jjohn@mail.com");
//visible properties of Icon
If(MyProfile.Mail in AdminList.Value,true,false);
what am I not seeing?
tx in advance