mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Fix search indexing of group nodes
This commit is contained in:
parent
61d9ccf263
commit
2d0ca20a03
@ -59,6 +59,9 @@ RED.search = (function() {
|
|||||||
}
|
}
|
||||||
for (var i=0;i<properties.length;i++) {
|
for (var i=0;i<properties.length;i++) {
|
||||||
if (n.hasOwnProperty(properties[i])) {
|
if (n.hasOwnProperty(properties[i])) {
|
||||||
|
if (n.type === "group" && properties[i] === "nodes") {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
indexProperty(n, l, n[properties[i]]);
|
indexProperty(n, l, n[properties[i]]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user