I'm using angular 7 and I want when I click in update User I get a page with all info about that user so I can update what I want, but on validator attribute I don't see the value of it from database.
This is my code:
<div fxFlex="50" class="pr-1">
<mat-form-field class="full-width">
<mat-select placeholder="Validator *" name="validator" [formControl]="indicateurForm.controls['validator']" class="mb-1">
<mat-option *ngFor="let v of listValidators" [value]="v" ngDefaultControl>
{{v?.firstName}} {{v?.lastName}}
</mat-option>
</mat-select>
</mat-form-field>
</div>
if I use 'input' I got the result of the validator but on 'select' I got nothing display. Thanks in advance :)