diff --git a/ui/lib/routing-tree.js b/ui/lib/routing-tree.js index 61d759b4..59ebcef2 100644 --- a/ui/lib/routing-tree.js +++ b/ui/lib/routing-tree.js @@ -80,7 +80,7 @@ function match(root, labelSet) { if (root.children) { for (var j = 0; j < root.children.length; j++) { var child = root.children[j]; - var matches = match(child, labelSet) + var matches = match(child, labelSet); all = all.concat(matches);