We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bfaa4f commit cb561a1Copy full SHA for cb561a1
src/app/pipelines/pipelines.component.html
@@ -24,7 +24,7 @@
24
<button mat-flat-button routerLink="/pipelines/{{row.metadata.name}}" color="primary">Detail</button>
25
<button mat-button (click)="resumePipe(row.metadata.name)" [disabled]="!row.spec.paused">Resume</button>
26
<button mat-button (click)="pausePipe(row.metadata.name)" [disabled]="row.spec.paused">Pause</button>
27
- <button mat-button color="warn" (click)="reset(row.metadata.name)" [disabled]="row.spec.paused">Reset</button>
+ <button mat-button color="warn" (click)="reset(row.metadata.name)">Reset</button>
28
<button mat-button color="warn" (click)="delete(row.metadata.name)">Delete</button>
29
</mat-cell>
30
</ng-container>
0 commit comments