Я перечисляю 1-100 номеров, используя поле mat-form в параметре mat. Сохраненное значение не отображается в раскрывающемся списке после сохранения. **
<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>
**