<mat-form-field appearance="fill">
<mat-label>Équipe</mat-label>
<mat-select formControlName="equipe">
<mat-option *ngFor="let data of dataForSelects['equipes']" [value]="data">
{{data.label}}
</mat-option>
</mat-select>
<mat-error *ngIf="checkErrorForm('equipe', 'required')">L'équipe est obligatoire</mat-error>
</mat-form-field>
...
form = this._formBuilder.group({
id: [''],
equipe: ['', [Validators.required, ], ],
...
with :
this.form.valueChanges.subscribe((values: any) => {
console.log(values); // The values of the MAT-SELECT are missing
Why is this.form.value missing values from all drop-down lists?
Other text field or date values are well recovered
How do I do this?