mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-04-26 05:49:47 +00:00
11 lines
421 B
HTML
11 lines
421 B
HTML
<h1 mat-dialog-title>Are you sure you want to delete the following ACEs ?</h1>
|
|
<ul>
|
|
<li *ngFor="let ace of data.aces">{{ ace.path }} </li>
|
|
</ul>
|
|
<div mat-dialog-actions class="button-div">
|
|
<button mat-button (click)="onCancel()" color="accent">No, cancel</button>
|
|
<button mat-button (click)="onDelete()" tabindex="2" class="add-project-button" mat-raised-button color="primary">
|
|
Yes, delete!
|
|
</button>
|
|
</div>
|