Skip to content

Instantly share code, notes, and snippets.

@Oleg-Sulzhenko
Created March 7, 2019 14:00
Show Gist options
  • Save Oleg-Sulzhenko/d6bf85ec467443ae0d105a63b2342da5 to your computer and use it in GitHub Desktop.
Save Oleg-Sulzhenko/d6bf85ec467443ae0d105a63b2342da5 to your computer and use it in GitHub Desktop.
<ng-container *ngIf="{
users: users$ | async,
adminsList: adminsList$ | async
} as data">
<div class="ads-table__content">
<div *ngFor="let user of data.users" class="users__item">
<div>{{user.userName}}</div>
<div>{{user.email}}</div>
<select>
<option value="admin.id" *ngFor="let admin of data.adminsList">{{admin.fullName}}</option>
</selet>
</div>
</div>
</ng-container>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment