From 327db1e09a049db53ab4043088c69b8988a2bd41 Mon Sep 17 00:00:00 2001 From: abearxiong Date: Fri, 6 Mar 2026 02:42:38 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=E8=8E=B7=E5=8F=96?= =?UTF-8?q?=E5=B7=B2=E5=85=B3=E9=97=AD=E5=B7=A5=E4=BD=9C=E7=A9=BA=E9=97=B4?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E7=9A=84=E8=AF=B7=E6=B1=82=EF=BC=8C=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0pageSize=E5=8F=82=E6=95=B0=E4=BB=A5=E9=99=90=E5=88=B6?= =?UTF-8?q?=E8=BF=94=E5=9B=9E=E6=95=B0=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- agent/routes/workspace/skills.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/routes/workspace/skills.ts b/agent/routes/workspace/skills.ts index cbf7d0b..3df685b 100644 --- a/agent/routes/workspace/skills.ts +++ b/agent/routes/workspace/skills.ts @@ -45,7 +45,7 @@ app.route({ }) } }).define(async (ctx) => { - const closedWorkspaces = await cnb.workspace.list({ status: 'closed' }); + const closedWorkspaces = await cnb.workspace.list({ status: 'closed', pageSize: 100 }); if (closedWorkspaces.code !== 200) { ctx.throw(500, '获取已关闭工作空间列表失败'); }