From da74bf4817fefff541e2113f3d7b13f042335260 Mon Sep 17 00:00:00 2001 From: Linghong Date: Wed, 16 Sep 2026 06:39:30 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=9F=E4=B8=80=E5=B7=A5=E5=85=B7=E8=B0=83?= =?UTF-8?q?=E7=94=A8=E8=BF=87=E7=A8=8B=E7=8A=B6=E6=80=81=E5=91=88=E7=8E=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 让进行中工具组保留已执行数量并补齐过程区域无障碍名称。 --- .../src/features/project-workspace/ToolCallGroup.tsx | 1 + .../src/features/project-workspace/toolCallGroupPresentation.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/ai-game-creator-shell/src/features/project-workspace/ToolCallGroup.tsx b/apps/ai-game-creator-shell/src/features/project-workspace/ToolCallGroup.tsx index ec2ab047a..d5e904f51 100644 --- a/apps/ai-game-creator-shell/src/features/project-workspace/ToolCallGroup.tsx +++ b/apps/ai-game-creator-shell/src/features/project-workspace/ToolCallGroup.tsx @@ -113,6 +113,7 @@ export function ToolCallGroup({ : 'agent-tool-call-group' } data-testid="agent-tool-call-group" + aria-label="陶泥儿执行过程" data-status={status} data-duration-ms={totalDurationMs ?? ''} > diff --git a/apps/ai-game-creator-shell/src/features/project-workspace/toolCallGroupPresentation.ts b/apps/ai-game-creator-shell/src/features/project-workspace/toolCallGroupPresentation.ts index 8dfa433df..a48a125bd 100644 --- a/apps/ai-game-creator-shell/src/features/project-workspace/toolCallGroupPresentation.ts +++ b/apps/ai-game-creator-shell/src/features/project-workspace/toolCallGroupPresentation.ts @@ -71,7 +71,7 @@ export function toolCallGroupSummary( } return parts.length > 0 ? running - ? parts.join('、') + ? `已执行 ${parts.join('、')}进行中` : `已执行 ${parts.join('、')}` : ''; }