GUACAMOLE-338: The "expandable" property of connection GroupListItems should accurately reflect the default includeSharingProfiles value.
Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/commit/5c4188e7 Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/tree/5c4188e7 Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/diff/5c4188e7 Branch: refs/heads/master Commit: 5c4188e7ed3418bab82bb47ae7c57b5c50cd9d24 Parents: 5648c36 Author: Michael Jumper <[email protected]> Authored: Mon Jul 3 16:21:21 2017 -0700 Committer: Michael Jumper <[email protected]> Committed: Mon Jul 3 16:21:21 2017 -0700 ---------------------------------------------------------------------- guacamole/src/main/webapp/app/groupList/types/GroupListItem.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/blob/5c4188e7/guacamole/src/main/webapp/app/groupList/types/GroupListItem.js ---------------------------------------------------------------------- diff --git a/guacamole/src/main/webapp/app/groupList/types/GroupListItem.js b/guacamole/src/main/webapp/app/groupList/types/GroupListItem.js index 3591dd0..e662972 100644 --- a/guacamole/src/main/webapp/app/groupList/types/GroupListItem.js +++ b/guacamole/src/main/webapp/app/groupList/types/GroupListItem.js @@ -187,7 +187,7 @@ angular.module('groupList').factory('GroupListItem', ['ConnectionGroup', functio dataSource : dataSource, // Type information - expandable : includeSharingProfiles, + expandable : includeSharingProfiles !== false, type : GroupListItem.Type.CONNECTION, // Already-converted children
