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

7 lines
342 B
HTML
Raw Normal View History

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