i have bind the values through formController
but it’s not bind the correctly,
this is how i bind the values on .ts file
this.rental.setValue(scheme, { emitEvent: false, onlySelf: true });
this is the relevent html
<ion-item>
<ion-label position="floating"> SCHEME</ion-label>
<ion-select placeholder="Select" formControlName="rental" interface="popover">
<ion-select-option *ngFor="let scheme of product" [value]="scheme">
<p class="color-gray font-12 text-align-right bold">
{{scheme.description}}
</p>
</ion-select-option>
</ion-select>
</ion-item>
product is object array