You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
449 B
9 lines
449 B
5 months ago
|
<crud-template #$crud [defination]="defination" [addable]="true" [selectable]="true" [deletable]="true" [row-operation-template]="$operatoin" [editable]="true" [api]="'systemsetting'" [error]="error">
|
||
|
<!-- -->
|
||
|
<ng-template #$operatoin let-row>
|
||
|
<button mat-icon-button matTooltip="{{ 'routes.wcs.monitortask.Delete' | translate }}" (click)="delete(row)">
|
||
|
<mat-icon>delete</mat-icon>
|
||
|
</button>
|
||
|
</ng-template>
|
||
|
</crud-template>
|