I'm having an issue with my select option in Angular Material. The options look fine, but when I select one, the strong tag disappears. Can anyone help me style only that part? Thank you in advance.
<mat-select formControlName="projectId" placeholder="project" [disabled]="enableList">
<mat-option *ngFor="let projects of arrayProjects" [value]="projects.nameProject" (click)="projectSelected(projects)">
{{projects.nameProject}} - <strong> {{projects.id}} </strong> - {{projects.PEP | pepFormat}}
</mat-option>
</mat-select>