We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
yyx990803
kiaking
brc-dd
posva
Learn more about funding links in repositories.
Report abuse
1 parent 39dbd78 commit d2b6d39Copy full SHA for d2b6d39
src/client/theme-default/components/SideBar.ts
@@ -136,7 +136,8 @@ function resolveMultiSidebar(
136
headers: Header[],
137
depth: number
138
): ResolvedSidebar {
139
- const item = config[getPathDirName(path)]
+ const paths = [path, Object.keys(config)[0]]
140
+ const item = paths.map((x) => config[getPathDirName(x)]).find(Boolean)
141
142
if (Array.isArray(item)) {
143
return resolveArraySidebar(item, depth)
0 commit comments