mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-09 17:40:09 +00:00
Sync 2666 Execution Model Inversion (#312)
* Sync 2666 Execution Model Inversion * Fix unittest * Fallback compatible
This commit is contained in:
@@ -272,7 +272,11 @@ class ComfyList {
|
||||
false
|
||||
)
|
||||
if ('outputs' in item) {
|
||||
app.nodeOutputs = item.outputs
|
||||
app.nodeOutputs = {}
|
||||
for (const [key, value] of Object.entries(item.outputs)) {
|
||||
const realKey = item['meta']?.[key]?.display_node ?? key
|
||||
app.nodeOutputs[realKey] = value
|
||||
}
|
||||
}
|
||||
}
|
||||
}),
|
||||
|
||||
Reference in New Issue
Block a user