I have the following select component that gets populated from a data coming from a rest api. How Can I set default selected value on md-select?
<md-select
placeholder= "Warehouse"
style="width: 100%"
[(ngModel)]='selectedProductWarehouse.warehouse'
name="Warehouse"
required
#Warehouse="ngModel">
<md-option *ngFor="let warehouse of warehouses" [value]="warehouse">{{warehouse.description}}</md-option>
</md-select>
subject: new FormControl('default option name')- Ben Racicot