From f63df83dad9fb286d924f8702b2ec23b5a887d9c Mon Sep 17 00:00:00 2001 From: ZLY Date: Thu, 11 Dec 2025 16:50:11 +0800 Subject: [PATCH] =?UTF-8?q?feat(ideContainer):=20=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E8=BF=90=E8=A1=8C=E6=97=B6=E6=95=B0=E6=8D=AE=E5=B1=95=E7=A4=BA?= =?UTF-8?q?=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/ideContainer/components/runTimeData.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/pages/ideContainer/components/runTimeData.tsx b/src/pages/ideContainer/components/runTimeData.tsx index f2c4da1..ba42fc4 100644 --- a/src/pages/ideContainer/components/runTimeData.tsx +++ b/src/pages/ideContainer/components/runTimeData.tsx @@ -49,17 +49,17 @@ const columns: TableColumnProps[] = [ { title: '输入参数', dataIndex: 'input', - ellipsis: true, + width: 200, render: (_: any, record) => ( - {JSON.stringify(record.input)} +
{JSON.stringify(record.input)}
) }, { title: '输出参数', dataIndex: 'output', - ellipsis: true, + width: 200, render: (_: any, record) => ( - {JSON.stringify(record.output)} +
{JSON.stringify(record.output)}
) } ]; @@ -96,7 +96,7 @@ const RunTimeData = ({ logData }) => { }, [tabList]); return ( -
+
{tabList.map((item) => ())}