Refactor groups component to update filter option
testing/ogGui-multibranch/pipeline/head This commit is unstable
Details
testing/ogGui-multibranch/pipeline/head This commit is unstable
Details
parent
7dcb6ecb1c
commit
5980f469ec
|
@ -293,6 +293,9 @@
|
||||||
</button>
|
</button>
|
||||||
</td>
|
</td>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ng-container matColumnDef="maintenace">
|
<ng-container matColumnDef="maintenace">
|
||||||
<th mat-header-cell *matHeaderCellDef mat-sort-header> {{ 'maintenance' | translate }} </th>
|
<th mat-header-cell *matHeaderCellDef mat-sort-header> {{ 'maintenance' | translate }} </th>
|
||||||
<td mat-cell *matCellDef="let client"> {{ client.maintenance }} </td>
|
<td mat-cell *matCellDef="let client"> {{ client.maintenance }} </td>
|
||||||
|
@ -322,6 +325,17 @@
|
||||||
|
|
||||||
<mat-menu #clientMenu="matMenu">
|
<mat-menu #clientMenu="matMenu">
|
||||||
|
|
||||||
|
<mat-menu restoreFocus=false #commandMenu="matMenu" xPosition="before">
|
||||||
|
<button mat-menu-item *ngFor="let command of commands" (click)="executeClientCommand(command, client)">
|
||||||
|
<span>{{ command.name }}</span>
|
||||||
|
</button>
|
||||||
|
</mat-menu>
|
||||||
|
|
||||||
|
<button mat-menu-item [matMenuTriggerFor]="commandMenu" (click)="fetchCommands()">
|
||||||
|
<mat-icon>play_arrow</mat-icon>
|
||||||
|
<span>{{ 'executeCommand' | translate }}</span>
|
||||||
|
</button>
|
||||||
|
|
||||||
<button mat-menu-item (click)="onEditClick($event, client.type, client.uuid)">
|
<button mat-menu-item (click)="onEditClick($event, client.type, client.uuid)">
|
||||||
<mat-icon>edit</mat-icon>
|
<mat-icon>edit</mat-icon>
|
||||||
<span>{{ 'edit' | translate }}</span>
|
<span>{{ 'edit' | translate }}</span>
|
||||||
|
|
Loading…
Reference in New Issue