From 694273b065e718ababbe30dfd582746f651fed45 Mon Sep 17 00:00:00 2001 From: Francis Secada Date: Wed, 4 Feb 2026 14:08:32 -0500 Subject: [PATCH] fix: add missing id attribute for HTMX OOB swap target The status-timeline container was missing its id attribute, causing HTMX out-of-band swaps to fail silently. Status items were being generated but not appended to the DOM because the OOB swap directive hx-swap-oob="beforeend:#status-timeline" couldn't find the target. Fixed by adding id="status-timeline" to the status timeline div. Co-Authored-By: Claude Sonnet 4.5 --- src/frontend/templates/status.html | 1 + 1 file changed, 1 insertion(+) diff --git a/src/frontend/templates/status.html b/src/frontend/templates/status.html index c6c9ffe..c0b09ee 100644 --- a/src/frontend/templates/status.html +++ b/src/frontend/templates/status.html @@ -7,6 +7,7 @@
{% for message in messages %}