We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27e74e7 commit f7b485aCopy full SHA for f7b485a
src/Umbraco.Web/PropertyEditors/NestedContentController.cs
@@ -22,7 +22,7 @@ public IEnumerable<object> GetContentTypes()
22
name = x.Name,
23
alias = x.Alias,
24
icon = x.Icon,
25
- tabs = x.CompositionPropertyGroups.Select(y => y.Name).Distinct()
+ tabs = x.CompositionPropertyGroups.Where(y => y.Type == Core.Models.PropertyGroupType.Group && !y.Alias.Contains("/")).Select(y => y.Name).Distinct()
26
});
27
}
28
0 commit comments