diff --git a/src/Umbraco.Web/Trees/ApplicationTreeController.cs b/src/Umbraco.Web/Trees/ApplicationTreeController.cs index 7fedc44a15..1a0db84805 100644 --- a/src/Umbraco.Web/Trees/ApplicationTreeController.cs +++ b/src/Umbraco.Web/Trees/ApplicationTreeController.cs @@ -92,7 +92,8 @@ namespace Umbraco.Web.Trees } //Don't apply fancy grouping logic futher down, if we only have one group of items - if (CoreTrees.Value.Count() == 1) + var hasGroups = CoreTrees.Value.Any(x => x.Key != null); + if (hasGroups == false) { var multiTree = SectionRootNode.CreateMultiTreeSectionRoot(rootId, collection); multiTree.Name = Services.TextService.Localize("sections/" + application);