mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-03-07 14:09:59 +00:00
Properly implement ComfyNodeDef interface (#1821)
* nit * Properly implement ComfyNodeDef interface * nit * Mark readonly
This commit is contained in:
@@ -209,7 +209,7 @@ export class NodeSearchService {
|
||||
/* name */ 'Input Type',
|
||||
/* invokeSequence */ 'i',
|
||||
/* longInvokeSequence */ 'input',
|
||||
(node) => node.input.all.map((input) => input.type),
|
||||
(node) => node.inputs.all.map((input) => input.type),
|
||||
data,
|
||||
filterSearchOptions
|
||||
)
|
||||
@@ -219,7 +219,7 @@ export class NodeSearchService {
|
||||
/* name */ 'Output Type',
|
||||
/* invokeSequence */ 'o',
|
||||
/* longInvokeSequence */ 'output',
|
||||
(node) => node.output.all.map((output) => output.type),
|
||||
(node) => node.outputs.all.map((output) => output.type),
|
||||
data,
|
||||
filterSearchOptions
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user