diff options
| author | Claudomator Agent <agent@claudomator> | 2026-03-09 04:28:35 +0000 |
|---|---|---|
| committer | Claudomator Agent <agent@claudomator> | 2026-03-09 04:28:35 +0000 |
| commit | cdfdc30b9658694c633bee4560b6c65886ea86a3 (patch) | |
| tree | 3f0eabd62f1305f98fd3168234663fa531304de8 /web | |
| parent | 90684b33ba25a5a27da5fb0fb3a1f0a4812d52ec (diff) | |
web: show model alongside agent type on running task cards
Diffstat (limited to 'web')
| -rw-r--r-- | web/app.js | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1659,12 +1659,13 @@ function renderRunningView(tasks) { .catch(() => { parentEl.textContent = ''; }); } - // Meta row: agent type + execution ID (exec ID filled in async) + // Meta row: agent type + model + execution ID (exec ID filled in async) const metaRow = document.createElement('div'); metaRow.className = 'task-meta running-exec-meta'; const agentType = (task.agent && task.agent.type) ? task.agent.type : 'claude'; + const agentModel = (task.agent && task.agent.model) ? task.agent.model : ''; const agentSpan = document.createElement('span'); - agentSpan.textContent = `Agent: ${agentType}`; + agentSpan.textContent = agentModel ? `${agentType} (${agentModel})` : `Agent: ${agentType}`; const execIdSpan = document.createElement('span'); execIdSpan.className = 'execution-id running-exec-id'; execIdSpan.textContent = 'exec: …'; |
