7 lines
342 B
HTML
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>
|