<mat-form-field>
<mat-label>Choose bike</mat-label>
<mat-select (selectionChange)="setSelectedBikeId($event.value)" formControlName="bike"
[disabled]="!bookingForm.controls.location.value">
<mat-option *ngFor="let bike of (bikesByLocationList | async)" [value]="bike.id">
{{bike.name}}
</mat-option>
</mat-select>
</mat-form-field>
и вижу в браузере предупреждающую ошибку.
It looks like you're using the disabled attribute with a reactive form directive. If you set disabled to true
when you set up this control in your component class, the disabled attribute will actually be set in the DOM for
you. We recommend using this approach to avoid 'changed after checked' errors.
Example:
form = new FormGroup({
first: new FormControl({value: 'Nancy', disabled: true}, Validators.required),
last: new FormControl('Drew', Validators.required)
});
как от этого избавиться? что ему не нравится?
убери аттрибут disabled с контрола и пропиши его в формк
Обсуждают сегодня