summaryrefslogtreecommitdiff
path: root/web/app.js
diff options
context:
space:
mode:
authorClaudomator Agent <agent@claudomator>2026-07-06 10:27:39 +0000
committerClaudomator Agent <agent@claudomator>2026-07-06 10:27:39 +0000
commitfcf1821a62f151043df524deb111cadc4126e877 (patch)
tree678478cd5f6d02cbc4b0456ece7c97954b70ba4e /web/app.js
parenta494627d341d68ed0828ce6f61980bd3a6efbe17 (diff)
fix(web): restore running-log 300px height and close streams on card removal
CSS cascade fix: .task-log-tail.running-log combinator overrides .task-log-tail's 90px max-height for RUNNING/BLOCKED cards, restoring the intended 300px prominent log panel. Closes EventSource streams in taskLogStreams when cards are removed from the board. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'web/app.js')
-rw-r--r--web/app.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/web/app.js b/web/app.js
index 85632c2..65f561b 100644
--- a/web/app.js
+++ b/web/app.js
@@ -782,6 +782,10 @@ function renderTasksIntoContainer(tasks, container, emptyMsg) {
// Remove cards for tasks no longer in this list
for (const [id, card] of existingCards.entries()) {
if (!taskIds.has(id)) {
+ if (taskLogStreams[id]) {
+ taskLogStreams[id].source.close();
+ delete taskLogStreams[id];
+ }
card.remove();
existingCards.delete(id);
}