<h1 mat-dialog-title [innerHTML]="uitextLoadPredefinedEspece"></h1> <form id="form-load-predefined-espece"> <div mat-dialog-content> <mat-form-field> <mat-select id="select-combination" [placeholder]="label" [(value)]="selectedValue"> <mat-option *ngFor="let e of entries" [value]="e" [title]="entryLabel(e)"> {{ entryLabel(e) }} </mat-option> </mat-select> </mat-form-field> </div> <div mat-dialog-actions [attr.align]="'end'"> <button mat-raised-button color="primary" [mat-dialog-close]="false" cdkFocusInitial> {{ uitextCancel }} </button> <button mat-raised-button type="submit" color="warn" (click)="loadPredefinedEspece()" id="do-load" [disabled]=""> {{ uitextLoad }} </button> </div> </form>