mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-03-09 19:27:40 +08:00
Fix internal node id check
This commit is contained in:
parent
18cbab1d84
commit
34fd915eec
@ -542,7 +542,7 @@ 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 internalId = Object.values(this[GROUP_IDS]).indexOf(id);
|
const internalId = Object.values(this[GROUP_IDS]).indexOf(+id);
|
||||||
if (internalId > -1) {
|
if (internalId > -1) {
|
||||||
groupNode = this;
|
groupNode = this;
|
||||||
runningId = internalId;
|
runningId = internalId;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user