Connect the rerun button to the handler that was waiting for it
The list emitted executionRerunRequested and the executor had a handler for it, but the template never bound the two: pressing rerun on a finished run emitted into nothing, not even an HTTP call. The button stayed enabled because it only looks at the status. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
497eba6e1b
commit
0aec372d73
|
|
@ -7,6 +7,7 @@
|
|||
[selectedExecutionId]="selectedExecutionId()"
|
||||
(executionSelected)="selectExecution($event)"
|
||||
(executionDeleteRequested)="removeExecution($event)"
|
||||
(executionRerunRequested)="rerunExecution($event)"
|
||||
(compareRequested)="openComparison($event)">
|
||||
</app-tasks-executions-list>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue