zgo/src/app/items/item-delete/item-delete.component.html

11 lines
372 B
HTML

<h2 mat-dialog-title class="text">Delete item</h2>
<mat-dialog-content>
<p class="text">Are you sure you want to delete "{{item.name}}"?</p>
</mat-dialog-content>
<mat-dialog-actions>
<button mat-raised-button (click)="close()" class="text">Cancel</button>
<button mat-raised-button color="primary" class="text" (click)="save()">Delete</button>
</mat-dialog-actions>