Угловая опция выбора 6 матов не работает для всего приложения.
<div fxLayout="row wrap" fxLayoutAlign="start stretch" fxShow="true" fxHide="false" *ngIf="showbuyer">
<mat-form-field floatLabel="never" class="removeselect">
<mat-select placeholder="Buyer" floatLabel="never" (selectionChange)="buyerChange()" [(ngModel)]="buyerK">
<mat-option *ngFor="let buyer of buyers;" [value]="buyer?.userKey">{{buyer?.userName}}</mat-option>
</mat-select>
</mat-form-field>
</div>