summaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
Diffstat (limited to 'web')
-rw-r--r--web/app.js10
-rw-r--r--web/test/task-panel-summary.test.mjs1
2 files changed, 1 insertions, 10 deletions
diff --git a/web/app.js b/web/app.js
index 1e10ad3..2241c67 100644
--- a/web/app.js
+++ b/web/app.js
@@ -1798,16 +1798,6 @@ export function renderTaskPanel(task, executions) {
overview.appendChild(overviewGrid);
content.appendChild(overview);
- // ── Summary ──
- if (task.summary) {
- const summarySection = makeSection("Summary");
- const summaryText = document.createElement("div");
- summaryText.className = "task-summary-text";
- summaryText.textContent = task.summary;
- summarySection.appendChild(summaryText);
- content.appendChild(summarySection);
- }
-
// ── Agent Config ──
const a = task.agent || {};
const agentSection = makeSection('Agent Config');
diff --git a/web/test/task-panel-summary.test.mjs b/web/test/task-panel-summary.test.mjs
index 63dd483..1777003 100644
--- a/web/test/task-panel-summary.test.mjs
+++ b/web/test/task-panel-summary.test.mjs
@@ -18,6 +18,7 @@ function makeMockDOM() {
innerHTML: '',
hidden: false,
children: [],
+ dataset: {},
_listeners: {},
appendChild(child) { this.children.push(child); return child; },
prepend(...nodes) { this.children.unshift(...nodes); },