I want to do something like
<span *ngIf="admins.includes(name) | async"> where admins is defined in the component class as admins:Observable<string[]>
I know this does not work but is possible to achieve this in any way?
Thanks so much for help!
nameexists in the admin list - yeah?<span *ngIf="admins.includes(name)>