From 269d65ff98fb33d84a47e580a7c9f083dab49de8 Mon Sep 17 00:00:00 2001 From: MT-Mint <798521692@qq.com> Date: Mon, 23 Mar 2026 14:05:14 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=B0=86=E7=AD=89=E5=BE=85=E5=A4=8D?= =?UTF-8?q?=E5=88=B6=E7=9A=84=E5=86=85=E5=AE=B9data=E9=87=8D=E5=91=BD?= =?UTF-8?q?=E5=90=8D=E4=B8=BAtext?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/app/workspace/chats/[thread_id]/page.tsx | 2 +- frontend/src/lib/utils.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/workspace/chats/[thread_id]/page.tsx b/frontend/src/app/workspace/chats/[thread_id]/page.tsx index c3d2697c..e7bc36cf 100644 --- a/frontend/src/app/workspace/chats/[thread_id]/page.tsx +++ b/frontend/src/app/workspace/chats/[thread_id]/page.tsx @@ -549,7 +549,7 @@ export default function ChatPage() { {/* MARK: 开发测试:iframe 通信功能测试面板 */} - + {/* */} ); diff --git a/frontend/src/lib/utils.ts b/frontend/src/lib/utils.ts index 991b94bf..36369100 100644 --- a/frontend/src/lib/utils.ts +++ b/frontend/src/lib/utils.ts @@ -19,7 +19,7 @@ export async function copyToClipboard(text: string): Promise { const isInIframe = window.self !== window.top; const message = { type: "copyToClipboard", - data: text, + text, }; if (isInIframe && window.parent) {