Use name of current group, not parent group.

This commit is contained in:
Michael Jumper
2013-08-12 02:04:34 -07:00
parent c00eaa49b6
commit af0c2fd417

View File

@@ -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);