Skip to content

Commit 8ff4e50

Browse files
authored
fix: Loop body supports parameter extraction nodes (#4209)
1 parent 828e74f commit 8ff4e50

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ui/src/workflow/common/data.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ export const searchDocumentNode = {
134134
config: {
135135
fields: [
136136
{
137-
label: t( 'views.applicationWorkflow.nodes.searchDocumentNode.knowledge_list'),
137+
label: t('views.applicationWorkflow.nodes.searchDocumentNode.knowledge_list'),
138138
value: 'knowledge_list',
139139
},
140140
{
@@ -618,7 +618,7 @@ export const menuNodes = [
618618
},
619619
{
620620
label: t('views.knowledge.title'),
621-
list: [searchKnowledgeNode, searchDocumentNode, rerankerNode]
621+
list: [searchKnowledgeNode, searchDocumentNode, rerankerNode],
622622
},
623623
{
624624
label: t('views.applicationWorkflow.nodes.classify.businessLogic'),
@@ -651,15 +651,15 @@ export const applicationLoopMenuNodes = [
651651
},
652652
{
653653
label: t('views.knowledge.title'),
654-
list: [searchKnowledgeNode, searchDocumentNode, rerankerNode]
654+
list: [searchKnowledgeNode, searchDocumentNode, rerankerNode],
655655
},
656656
{
657657
label: t('views.applicationWorkflow.nodes.classify.businessLogic'),
658658
list: [conditionNode, formNode, variableAssignNode, replyNode, loopContinueNode, loopBreakNode],
659659
},
660660
{
661661
label: t('views.applicationWorkflow.nodes.classify.dataProcessing', '数据处理'),
662-
list: [variableSplittingNode],
662+
list: [variableSplittingNode, parameterExtractionNode],
663663
},
664664
{
665665
label: t('views.applicationWorkflow.nodes.classify.other'),

0 commit comments

Comments
 (0)