Select defined as:
<bl-select placeholder="Filter" [ngModel]="pickedFilter" (ngModelChange)="pickSelectedFilter($event)">
<bl-option *ngFor="let filter of optionFilters;trackBy:trackFilterOption"
[label]="filter.label"
[value]="filter.value">
</bl-option>
</bl-select>
ngModel has the correct default value, but the fist option is always picked, even though when i open the picker, the correct item based on the model is selected.

But opening the option list has the first item selected:

When it should be the one that matches the model.
Select defined as:
ngModel has the correct default value, but the fist option is always picked, even though when i open the picker, the correct item based on the model is selected.
But opening the option list has the first item selected:
When it should be the one that matches the model.