From 4b8e26881679e46bd9343c2f233f4e3df67a91dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=BE=B7=E5=AE=87?= Date: Sat, 12 Sep 2026 13:18:30 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=9F=E4=B8=80=E9=87=8D=E5=90=AF=E5=88=87?= =?UTF-8?q?=E5=88=86=E5=A4=B1=E8=B4=A5=E9=80=9A=E7=9F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit restartSeparation 失败时复用工作流完成上报并清理完成提示 --- .../src/view/ui-editor/useUiEditorPage.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/ai-game-creator-shell/src/view/ui-editor/useUiEditorPage.ts b/apps/ai-game-creator-shell/src/view/ui-editor/useUiEditorPage.ts index 5074d58b2..eabaae116 100644 --- a/apps/ai-game-creator-shell/src/view/ui-editor/useUiEditorPage.ts +++ b/apps/ai-game-creator-shell/src/view/ui-editor/useUiEditorPage.ts @@ -1333,8 +1333,11 @@ export function useUiEditorSession( }); await runSeparationWorkflow(); } catch (cause) { - setSeparationStatus( + reportWorkflowCompletion( + 'asset-separation', + 'failure', cause instanceof Error ? cause.message : String(cause), + setSeparationStatus, ); } }