Skip to content

Commit cb561a1

Browse files
committed
feat: support reset when pipeline is paused
1 parent 4bfaa4f commit cb561a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/pipelines/pipelines.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<button mat-flat-button routerLink="/pipelines/{{row.metadata.name}}" color="primary">Detail</button>
2525
<button mat-button (click)="resumePipe(row.metadata.name)" [disabled]="!row.spec.paused">Resume</button>
2626
<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>
27+
<button mat-button color="warn" (click)="reset(row.metadata.name)">Reset</button>
2828
<button mat-button color="warn" (click)="delete(row.metadata.name)">Delete</button>
2929
</mat-cell>
3030
</ng-container>

0 commit comments

Comments
 (0)