We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b23009a commit 857606bCopy full SHA for 857606b
packages/service/core/app/plugin/controller.ts
@@ -215,8 +215,10 @@ export async function getChildAppPreviewNode({
215
flowNodeType: app.isFolder ? FlowNodeTypeEnum.toolSet : FlowNodeTypeEnum.tool,
216
nodeIOConfig: {
217
inputs: app.isFolder
218
- ? ([
+ ? [
219
{
220
+ key: NodeInputKeyEnum.toolSetData,
221
+ label: '',
222
value: {
223
toolList: children.map((item) => ({
224
name: parseI18nString(item.name, lang),
@@ -235,7 +237,7 @@ export async function getChildAppPreviewNode({
235
237
}
236
238
]
239
: [])
- ] as FlowNodeInputItemType[])
240
+ ]
241
: app.inputs ?? [],
242
outputs: app.outputs ?? [],
243
toolConfig: {
0 commit comments