Skip to content

Commit af15347

Browse files
committed
Fix @disableGroups on classes
ref: #2922 (comment)
1 parent e27a6b7 commit af15347

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/lib/output/themes/default/partials/members.tsx

+5-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@ export function members(context: DefaultThemeRenderContext, props: ContainerRefl
1010
<>
1111
{sections.map((section) => {
1212
if (isNoneSection(section)) {
13-
<section class="tsd-panel-group tsd-member-group">
14-
{section.children.map((item) => context.member(item))}
15-
</section>;
13+
return (
14+
<section class="tsd-panel-group tsd-member-group">
15+
{section.children.map((item) => context.member(item))}
16+
</section>
17+
);
1618
}
1719

1820
context.page.startNewSection(section.title);

0 commit comments

Comments
 (0)