From 1bf46bf31d89c53e6c564cae8371553e1776c6a9 Mon Sep 17 00:00:00 2001 From: huangmin <2927933426@qq.com> Date: Sat, 6 Jun 2026 15:19:48 +0800 Subject: [PATCH] =?UTF-8?q?fix(HomeProjectsContent):=20=E6=96=B0=E5=A2=9E?= =?UTF-8?q?=E5=B0=81=E9=9D=A2=E5=9B=BE=E5=AD=97=E6=AE=B5=E4=BC=A0=E5=85=A5?= =?UTF-8?q?=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复项目跳转时缺少封面参数的问题,将data.image作为coverUrl传入 --- src/components/HomeProjectsContent.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/HomeProjectsContent.tsx b/src/components/HomeProjectsContent.tsx index 4f86b2c8..c1f3dfca 100644 --- a/src/components/HomeProjectsContent.tsx +++ b/src/components/HomeProjectsContent.tsx @@ -1494,6 +1494,7 @@ function ShowsSection() { title, desp: data.subtitle || "", properties: data.data || buildEmptyWorkflowProperties(title), + coverUrl: data.image || "", }); const workflowId = (result.data as any)?.id; router.push(workflowId ? `/canvas?workflowId=${workflowId}` : "/canvas");