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 <noreply@anthropic.com>
This commit is contained in:
2026-02-04 14:08:32 -05:00
parent d3e82bc757
commit 694273b065

View File

@ -7,6 +7,7 @@
<div class="container"
style="max-width: 800px;">
<div class="status-timeline"
id="status-timeline"
role="feed"
aria-label="Status updates">
{% for message in messages %}