Skip to content

Commit

Permalink
fix(core): fix missing symbols edge case
Browse files Browse the repository at this point in the history
  • Loading branch information
tgreyuk committed Jun 29, 2024
1 parent ef4ce36 commit 956ca03
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ export function project(
md.push(this.helpers.getGroupIndex(group));
}

if (page.model.children?.some((child) => child.kind !== ReflectionKind.Module)) {
md.push(this.partials.body(page.model, { headingLevel: 2 }));
}

md.push(
this.partials.reflectionIndex(page.model, {
headingLevel: 2,
Expand Down

0 comments on commit 956ca03

Please sign in to comment.