From c5b4b6046ab959e8f80322e810d087798396c18c Mon Sep 17 00:00:00 2001 From: dengqichen Date: Tue, 4 Nov 2025 10:57:03 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=8D=A2=E5=8F=98=E9=87=8F=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E7=BB=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/utils/page.ts | 2 +- frontend/src/utils/workflow/collectNodeVariables.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/utils/page.ts b/frontend/src/utils/page.ts index 39a62d0e..ddbe279b 100644 --- a/frontend/src/utils/page.ts +++ b/frontend/src/utils/page.ts @@ -1,4 +1,4 @@ -import type {Page, PageParams} from '@/types/base'; +import type {Page} from '@/types/base'; // 默认分页参数 export const DEFAULT_PAGE_SIZE = 10; diff --git a/frontend/src/utils/workflow/collectNodeVariables.ts b/frontend/src/utils/workflow/collectNodeVariables.ts index e0d4d166..cf9a2ee7 100644 --- a/frontend/src/utils/workflow/collectNodeVariables.ts +++ b/frontend/src/utils/workflow/collectNodeVariables.ts @@ -100,8 +100,8 @@ export const collectNodeVariables = ( nodeName: nodeName, fieldName: output.name, fieldType: output.type, - displayText: `\${${nodeName}.${output.name}}`, - fullText: `${nodeName}.${output.name}`, + displayText: `\${${nodeName}.outputs.${output.name}}`, + fullText: `${nodeName}.outputs.${output.name}`, }); }); });