OpenSlides/client/src/app/shared/components/prompt-dialog/prompt-dialog.component.html

7 lines
336 B
HTML
Raw Normal View History

2019-02-02 17:06:23 +01:00
<h2 mat-dialog-title>{{ data.title }}</h2>
<mat-dialog-content [innerHTML]="data.content"></mat-dialog-content>
2018-10-01 15:36:16 +02:00
<mat-dialog-actions>
2019-02-02 17:06:23 +01:00
<button mat-button [mat-dialog-close]="true" color="warn">{{ 'Yes' | translate }}</button>
<button mat-button [mat-dialog-close]="false">{{ 'Cancel' | translate }}</button>
2018-10-01 15:36:16 +02:00
</mat-dialog-actions>