I have a mat-select in my form with multiple options (You can see a demo in here).
<mat-form-field style="width: 100%">
<mat-select placeholder="Toppings" [formControl]="toppings" multiple>
<mat-option *ngFor="let topping of toppingList" [value]="topping">{{topping}}</mat-option>
</mat-select>
</mat-form-field>
It shows a comma-separated list of selected options in its input field. Is there any way to change the separator?