5bbd4c3b64
fixes #544
13 lines
627 B
HTML
13 lines
627 B
HTML
<h2 mat-dialog-title>Delete {{data.title}}?</h2>
|
|
<mat-dialog-content>This will remove the device and all historical data from Scrutiny. <strong>Any data on the device
|
|
itself will remain untouched.</strong></mat-dialog-content>
|
|
<mat-dialog-actions>
|
|
<button mat-button mat-dialog-close>Cancel</button>
|
|
<!-- The mat-dialog-close directive optionally accepts a value as a result for the dialog. -->
|
|
<button class="red-600" mat-button (click)="onDeleteClick()">
|
|
<mat-icon class="icon-size-20 mr-3"
|
|
[svgIcon]="'delete_forever'"></mat-icon>
|
|
Delete
|
|
</button>
|
|
</mat-dialog-actions>
|