Components: Problem populating md-select options when using in reactive forms

Created on 17 Jul 2017  路  13Comments  路  Source: angular/components

<md-select placeholder="Profile" [formControl]="profilesFormControl">
    <md-option *ngFor="let profile of profiles" [value]="profile"> 
        {{ profile.Name }}
    </md-option>
</md-select>

Following normal select box populates fine:

<select >
    <option [ngValue]="profile" *ngFor="let profile of profiles">
        {{ profile.Name }}
    </option>
</select>

Bug, feature request, or proposal:

Bug

What is the expected behavior?

Successfully populate md-select control

What is the current behavior?

md-select control does not populate whereas If I use normal