13 lines
605 B
HTML
13 lines
605 B
HTML
<h3 mat-dialog-title class="dialog-title">
|
|
<span style="margin-top: 10px">Delete</span>
|
|
<button style="margin-top: 10px" mat-mini-fab class="small-icon-button" (click)="cancel()"><mat-icon>close</mat-icon></button>
|
|
</h3>
|
|
<div mat-dialog-content>
|
|
<p>Delete {{ModelComponentTypeUtillities.toSingleString(deleteModelComponent.type)}}"{{deleteModelComponent.componentName}}"?</p>
|
|
</div>
|
|
<div mat-dialog-actions align="end">
|
|
<button mat-raised-button class="btn-primary" (click)="confirmDelete()">Ok</button>
|
|
<button mat-raised-button class="btn-secondary" (click)="cancel()">Cancel</button>
|
|
</div>
|
|
|