mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-03-10 19:57:42 +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]) {
|
} else if (this[GROUP_IDS]) {
|
||||||
// Check if this is an internal node using its original ID
|
// Check if this is an internal node using its original ID
|
||||||
const isInternal = Object.values(this[GROUP_IDS]).indexOf(id) > -1;
|
const internalId = Object.values(this[GROUP_IDS]).indexOf(id);
|
||||||
if (isInternal) {
|
if (internalId > -1) {
|
||||||
groupNode = this;
|
groupNode = this;
|
||||||
runningId = id;
|
runningId = internalId;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (groupNode) {
|
if (groupNode) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user