8 lines
286 B
HTML
8 lines
286 B
HTML
<app-dialog-container [title]="data.title">
|
|
<p>{{ data.message }}</p>
|
|
<div class="confirmation-actions">
|
|
<button matButton="outlined" (click)="onCancel()">Cancel</button>
|
|
<button matButton="filled" (click)="onOk()">Ok</button>
|
|
</div>
|
|
</app-dialog-container>
|