diff --git a/src/browser/features/Tools/ProposePlanToolCall.tsx b/src/browser/features/Tools/ProposePlanToolCall.tsx index 1cf55d47c0..e19938f544 100644 --- a/src/browser/features/Tools/ProposePlanToolCall.tsx +++ b/src/browser/features/Tools/ProposePlanToolCall.tsx @@ -61,9 +61,11 @@ import type { ReviewActionCallbacks } from "../Shared/InlineReviewNote"; import { isPlanFilePath, normalizePlanFilePath } from "@/common/types/review"; import type { ThinkingLevel } from "@/common/types/thinking"; import { + Check, Clipboard, ClipboardCheck, ClipboardList, + Copy, FileText, ListStart, MessageSquareOff, @@ -655,11 +657,13 @@ export const ProposePlanToolCall: React.FC = (props) = const actionButtons: ButtonConfig[] = [copyButton]; // Copy the plan's on-disk file path (replaces the former mux.md "Share" link action). + // Use the Copy/Check icons (the repo's copy-a-value idiom, see RuntimeBadge) so this + // button is visually distinct from the Clipboard "Copy" button that copies plan content. if (planPath) { actionButtons.push({ label: copiedPath ? "Copied" : "Copy file path", onClick: () => void copyPathToClipboard(planPath), - icon: copiedPath ? : , + icon: copiedPath ? : , tooltip: planPath, }); }