mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-03-10 03:37:33 +08:00
Fix internal id
This commit is contained in:
parent
9d41993ae8
commit
da4feb682d
@ -489,10 +489,10 @@ const ext = {
|
||||
}
|
||||
} else if (this[GROUP_IDS]) {
|
||||
// Check if this is an internal node using its original ID
|
||||
const isInternal = Object.values(this[GROUP_IDS]).indexOf(id) > -1;
|
||||
if (isInternal) {
|
||||
const internalId = Object.values(this[GROUP_IDS]).indexOf(id);
|
||||
if (internalId > -1) {
|
||||
groupNode = this;
|
||||
runningId = id;
|
||||
runningId = internalId;
|
||||
}
|
||||
}
|
||||
if (groupNode) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user