From f4090ede9d61332e4a4e296669ff69b8f4150830 Mon Sep 17 00:00:00 2001 From: Wenjie Zhang Date: Tue, 3 Feb 2026 14:54:25 +0800 Subject: [PATCH] =?UTF-8?q?style(tool):=20=E4=BC=98=E5=8C=96=E9=83=A8?= =?UTF-8?q?=E5=88=86=E5=B7=A5=E5=85=B7=E8=B0=83=E7=94=A8=E6=B8=B2=E6=9F=93?= =?UTF-8?q?=E6=95=88=E6=9E=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/components/ToolCallingResult/BaseToolCall.vue | 2 +- .../components/ToolCallingResult/tools/WriteFileTool.vue | 7 ++----- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/web/src/components/ToolCallingResult/BaseToolCall.vue b/web/src/components/ToolCallingResult/BaseToolCall.vue index ebbea3a4..c0000990 100644 --- a/web/src/components/ToolCallingResult/BaseToolCall.vue +++ b/web/src/components/ToolCallingResult/BaseToolCall.vue @@ -307,7 +307,7 @@ const formatResultData = (data) => { font-size: 12px; color: var(--gray-800); background-color: var(--gray-50); - padding: 4px 4px; + padding: 0px 4px; border-radius: 4px; margin-left: 8px; diff --git a/web/src/components/ToolCallingResult/tools/WriteFileTool.vue b/web/src/components/ToolCallingResult/tools/WriteFileTool.vue index 4f7a71ed..42ff3332 100644 --- a/web/src/components/ToolCallingResult/tools/WriteFileTool.vue +++ b/web/src/components/ToolCallingResult/tools/WriteFileTool.vue @@ -4,9 +4,8 @@
write_file | - {{ filePath }} ({{ lineCount }} lines) + {{ filePath }} + +{{ lineCount }}
@@ -46,5 +45,3 @@ const lineCount = computed(() => { return String(content.value).split('\n').length }) - -