mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-02 14:27:40 +00:00
[Schema] ComfyNodeDefV2 schema (#2847)
This commit is contained in:
@@ -210,7 +210,7 @@ export class NodeSearchService {
|
||||
/* name */ 'Input Type',
|
||||
/* invokeSequence */ 'i',
|
||||
/* longInvokeSequence */ 'input',
|
||||
(node) => node.inputs.all.map((input) => input.type),
|
||||
(node) => Object.values(node.inputs).map((input) => input.type),
|
||||
data,
|
||||
filterSearchOptions
|
||||
)
|
||||
@@ -220,7 +220,7 @@ export class NodeSearchService {
|
||||
/* name */ 'Output Type',
|
||||
/* invokeSequence */ 'o',
|
||||
/* longInvokeSequence */ 'output',
|
||||
(node) => node.outputs.all.map((output) => output.type),
|
||||
(node) => node.outputs.map((output) => output.type),
|
||||
data,
|
||||
filterSearchOptions
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user