11 lines
581 B
HTML
11 lines
581 B
HTML
<div style="padding: 20px;">
|
|
<h2 style="line-height: 1.2;">Preset <span style="color: #ef6c00;">{{preset.name}}</span> umbenennen?</h2>
|
|
<mat-form-field style="width: 100%;">
|
|
<mat-label>Preset Name</mat-label>
|
|
<input matInput [(ngModel)]="newName">
|
|
</mat-form-field>
|
|
<mat-dialog-actions align="end">
|
|
<button mat-flat-button style="letter-spacing: 0px;" matDialogClose>Abbrechen</button>
|
|
<button mat-flat-button style="color: white; letter-spacing: 0px" color="primary"(click)="renamePreset()" matDialogClose>Umbenennen</button>
|
|
</mat-dialog-actions>
|
|
</div> |