ng-select selected option display wrong object property code example
Example: [ERROR ->] javascript by Encouraging Elephant on Nov 26 2020 Donate Comment
<ng-select
placeholder="Select city"
bindLabel="name"
formControlName="city">
<ng-option
*ngFor="let city of cities"
[value]="city">{{ city.name }}
</ng-option>
</ng-select>