|
3 | 3 | <div class="card main-content"> |
4 | 4 | <div class="header"> |
5 | 5 | <h2> |
6 | | - {{ 'Roles' | localize }} |
| 6 | + {{ "Roles" | localize }} |
7 | 7 | </h2> |
8 | 8 | <ul class="header-dropdown m-r--5"> |
9 | 9 | <li> |
|
13 | 13 | <mat-menu #headerMenu="matMenu"> |
14 | 14 | <button mat-menu-item (click)="refresh()"> |
15 | 15 | <mat-icon>refresh</mat-icon> |
16 | | - <span>{{ 'Refresh' | localize }}</span> |
| 16 | + <span>{{ "Refresh" | localize }}</span> |
17 | 17 | </button> |
18 | 18 | </mat-menu> |
19 | 19 | </li> |
|
23 | 23 | <table class="table table-hover table-striped" [busy]="isTableLoading"> |
24 | 24 | <thead> |
25 | 25 | <tr> |
26 | | - <th>{{ 'Actions' | localize }}</th> |
27 | | - <th>{{ 'RoleName' | localize }}</th> |
28 | | - <th>{{ 'DisplayName' | localize }}</th> |
| 26 | + <th>{{ "Actions" | localize }}</th> |
| 27 | + <th>{{ "RoleName" | localize }}</th> |
| 28 | + <th>{{ "DisplayName" | localize }}</th> |
29 | 29 | </tr> |
30 | 30 | </thead> |
31 | 31 | <tbody> |
32 | | - <tr *ngFor="let role of roles | paginate: { id: 'server', itemsPerPage: pageSize, currentPage: pageNumber, totalItems: totalItems }"> |
| 32 | + <tr *ngFor="let role of roles | paginate: { id: "server", itemsPerPage: pageSize, currentPage: pageNumber, totalItems: totalItems }"> |
33 | 33 | <td> |
34 | 34 | <button mat-icon-button [matMenuTriggerFor]="actionsMenu"> |
35 | 35 | <mat-icon>menu</mat-icon> |
36 | 36 | </button> |
37 | 37 | <mat-menu #actionsMenu="matMenu"> |
38 | 38 | <button mat-menu-item (click)="editRole(role)"> |
39 | 39 | <mat-icon>edit</mat-icon> |
40 | | - <span>{{ 'Edit' | localize }}</span> |
| 40 | + <span>{{ "Edit" | localize }}</span> |
41 | 41 | </button> |
42 | 42 | <button mat-menu-item (click)="delete(role)"> |
43 | 43 | <mat-icon>delete</mat-icon> |
44 | | - <span>{{ 'Delete' | localize }}</span> |
| 44 | + <span>{{ "Delete" | localize }}</span> |
45 | 45 | </button> |
46 | 46 | </mat-menu> |
47 | 47 | </td> |
|
0 commit comments