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}`, }); }); });