From af0c2fd41711218119055ef91e032286d44ed9ab Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Mon, 12 Aug 2013 02:04:34 -0700 Subject: [PATCH] Use name of current group, not parent group. --- guacamole/src/main/webapp/scripts/root-ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guacamole/src/main/webapp/scripts/root-ui.js b/guacamole/src/main/webapp/scripts/root-ui.js index 51514ff60..8d826090c 100644 --- a/guacamole/src/main/webapp/scripts/root-ui.js +++ b/guacamole/src/main/webapp/scripts/root-ui.js @@ -215,7 +215,7 @@ GuacamoleRootUI.reset = function() { var child_group = group.groups[i]; // Create display element for group - var list_group = new GuacUI.ListGroup(group.name); + var list_group = new GuacUI.ListGroup(child_group.name); // Recursively add all children to the new element addGroup(child_group, list_group.addElement);