I try to bind value to an html select. It works great except when the value is already set, it doesn't get selected in the select.
<div class="col-md-1">
<label class="search-label">{{'AUDIT_LOG_SEARCH_METHOD_DEVICE_TYPE' | translate}}</label>
<select class="form-control" [(ngModel)]="searchModel.request_device_type"
id="device_id" name="device_id" #device_id="ngModel">
<option *ngFor="let item of auditLogDeviceTypeItems" [ngValue]="item">{{item.text}}</option>
</select>
</div>
What am I doing wrong?