Manuel Tauber 2024-08-12 12:08:26 +02:00
commit d6022d4370
1 changed files with 18 additions and 14 deletions

View File

@ -1,17 +1,21 @@
<p style="margin-top: -3%;">{{this.languageService.lMap.get('implementerDialogHeading')}}</p> <div style="padding: 20px;">
<mat-form-field appearance="fill" > <p style="margin-top: -3%;">{{this.languageService.lMap.get('implementerDialogHeading')}}</p>
<mat-label>{{this.languageService.lMap.get('implementerDialogLabel')}}</mat-label> <mat-form-field appearance="fill">
<mat-select [disabled]="diasbled" (selectionChange)="enableButton()" [(ngModel)]="selectedValue" name="state"> <mat-label>{{this.languageService.lMap.get('implementerDialogLabel')}}</mat-label>
<mat-option *ngFor="let implementer of possibleImplementers" [value]="implementer.value"> <mat-select [disabled]="diasbled" (selectionChange)="enableButton()" [(ngModel)]="selectedValue" name="state">
{{implementer.viewValue}} <mat-option *ngFor="let implementer of possibleImplementers" [value]="implementer.value">
</mat-option> {{implementer.viewValue}}
</mat-select> </mat-option>
</mat-form-field> </mat-select>
<mat-progress-bar mode="determinate" [value]="progress"></mat-progress-bar> </mat-form-field>
<mat-progress-bar mode="determinate" [value]="progress"></mat-progress-bar>
<mat-dialog-actions align = "end"> <mat-dialog-actions align="end">
<button [disabled]="diasbled" mat-raised-button matDialogClose>{{this.languageService.lMap.get('implementerDialogCancel')}}</button> <button [disabled]="diasbled" mat-raised-button
<button [disabled]="bdiasbled" mat-raised-button color="primary" (click)="updateImplementer()">{{this.languageService.lMap.get('implementerDialogApply')}}</button> matDialogClose>{{this.languageService.lMap.get('implementerDialogCancel')}}</button>
</mat-dialog-actions> <button [disabled]="bdiasbled" mat-raised-button color="primary"
(click)="updateImplementer()">{{this.languageService.lMap.get('implementerDialogApply')}}</button>
</mat-dialog-actions>
</div>