OpenSlides/client/src/app/shared/components/prompt-dialog/prompt-dialog.component.html
2018-11-30 13:55:43 +01:00

7 lines
342 B
HTML

<h2 mat-dialog-title>{{ data.title | translate }}</h2>
<mat-dialog-content [innerHTML]="(data.content | translate)"></mat-dialog-content>
<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>