diff --git a/web/extensions/core/groupNode.js b/web/extensions/core/groupNode.js index 11ba34f25..4bcc88bce 100644 --- a/web/extensions/core/groupNode.js +++ b/web/extensions/core/groupNode.js @@ -542,7 +542,7 @@ const ext = { } } else if (this[GROUP_IDS]) { // 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) { groupNode = this; runningId = internalId;