Files
gns3-web-ui/src/app/components/permissions-management/action-button/action-button.component.html
2022-02-28 13:50:15 +01:00

7 lines
155 B
HTML

<button [ngClass]="{allow: action === 'ALLOW', deny: action === 'DENY'}"
mat-button
[disabled]="disabled"
(click)="change()">
{{action}}
</button>