Skip to content

Instantly share code, notes, and snippets.

@Gbuomprisco
Created May 27, 2019 14:37
Show Gist options
  • Save Gbuomprisco/0ff51045b7f12709cd3d595756d2cae8 to your computer and use it in GitHub Desktop.
Save Gbuomprisco/0ff51045b7f12709cd3d595756d2cae8 to your computer and use it in GitHub Desktop.
<mat-form-field>
<mat-label>
Select Asset
</mat-label>
<mat-select (selectionChange)="assetSelected.next($event.value)">
<mat-option *ngFor="let asset of (assets$ | async)" [value]="asset.id">
{{ asset.name }}
</mat-option>
</mat-select>
</mat-form-field>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment