From 3ea0439a9081d5b963fc3c9acd2c70356aa8d246 Mon Sep 17 00:00:00 2001 From: stuart nelson Date: Sat, 22 Oct 2016 19:50:35 +0200 Subject: [PATCH] Missing semi-colon --- ui/lib/routing-tree.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/lib/routing-tree.js b/ui/lib/routing-tree.js index bb830379..7913e11a 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);