From 387e2903d3fab8b480c270ed4b129dc7085f27b0 Mon Sep 17 00:00:00 2001 From: chanx <1243304602@qq.com> Date: Thu, 23 Apr 2026 10:15:26 +0800 Subject: [PATCH] Fix: Some bugs (#14287) ### What problem does this PR solve? Fix: Some bugs - Pipeline runtime log files could not be viewed - Corrected TOC terminology errors in the English translation ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) --------- Co-authored-by: Yingfeng --- web/src/pages/agent/hooks/use-run-dataflow.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/pages/agent/hooks/use-run-dataflow.ts b/web/src/pages/agent/hooks/use-run-dataflow.ts index 68898b9824..0d290a7959 100644 --- a/web/src/pages/agent/hooks/use-run-dataflow.ts +++ b/web/src/pages/agent/hooks/use-run-dataflow.ts @@ -35,7 +35,7 @@ export function useRunDataflow({ if (res && res?.response.status === 200 && get(res, 'data.code') === 0) { // fetch canvas - setUploadedFileData(fileResponseData.file); + setUploadedFileData(fileResponseData.file[0]); const msgId = get(res, 'data.data.message_id'); if (msgId) { setMessageId(msgId);