When I use the mat-form-field and mat-option to list numbers 1-100, the saved value is not displaying in the dropdown after saving.
<mat-form-field class="full-wid" appearance="outline">
<mat-label>Percentage 1 (%)</mat-label>
<mat-select matTooltip="Please percentage" class="numbers" [required]="percentTorF"
(selectionChange)="selected2()" [formControl]="salaryform.controls['Percentage1']"
[(ngModel)]="percentValue1">
<mat-option *ngFor="let n1 of numbers1" [value]="n1">{{ n1 }}</mat-option>
</mat-select>
<mat-error *ngIf="salaryform.controls['Percentage1'].hasError('required')">
Percentage is required</mat-error>
</mat-form-field>
https://i.sstatic.net/zQOs1.png** https://i.sstatic.net/soQ2H.png