From 0aec372d73c81468ce76b7bf2a986891b313ea1a Mon Sep 17 00:00:00 2001 From: Lucio Lelii Date: Wed, 9 Sep 2026 16:30:33 +0200 Subject: [PATCH] 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) --- src/app/layouts/tasks-executor/tasks-executor.html | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/layouts/tasks-executor/tasks-executor.html b/src/app/layouts/tasks-executor/tasks-executor.html index fdf071a..1adef2b 100644 --- a/src/app/layouts/tasks-executor/tasks-executor.html +++ b/src/app/layouts/tasks-executor/tasks-executor.html @@ -7,6 +7,7 @@ [selectedExecutionId]="selectedExecutionId()" (executionSelected)="selectExecution($event)" (executionDeleteRequested)="removeExecution($event)" + (executionRerunRequested)="rerunExecution($event)" (compareRequested)="openComparison($event)">