From 09f69dfa05e3879e1e29dbcdb4c4a0963a49cd56 Mon Sep 17 00:00:00 2001 From: Bohan Jiang <52446949+Bohan-J@users.noreply.github.com> Date: Wed, 15 Jul 2026 03:26:10 +0800 Subject: [PATCH] refactor(attribution): drop on-behalf badge from execution log rows (MUL-4766) (#5419) The "on behalf of " attribution chip on each execution-log row added visual noise to the dense run list. Remove it from both the active and past run rows and restore the original layout. The attribution stays discoverable where it belongs: the task transcript header and the agent detail page's recent-work list still render AttributionBadge. Co-authored-by: J Co-authored-by: multica-agent --- packages/views/issues/components/execution-log-section.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/packages/views/issues/components/execution-log-section.tsx b/packages/views/issues/components/execution-log-section.tsx index 849befc91c..d2121d1019 100644 --- a/packages/views/issues/components/execution-log-section.tsx +++ b/packages/views/issues/components/execution-log-section.tsx @@ -18,7 +18,6 @@ import { formatDuration } from "../../agents/components/agent-activity-hover-con import { TranscriptButton } from "../../common/task-transcript"; import { failureReasonLabel } from "../../agents/components/tabs/task-failure"; import { useT } from "../../i18n"; -import { AttributionBadge } from "./attribution-badge"; import { TerminateTaskConfirmDialog } from "./terminate-task-confirm-dialog"; // Right-panel section that lists every agent run for this issue. Active @@ -306,7 +305,6 @@ export function ActiveTaskRow({ return ( - {task.status === "running" ? ( @@ -410,7 +408,6 @@ function PastRow({ task, issueId }: { task: AgentTask; issueId: string }) { return ( -