We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3393e3 commit 0624828Copy full SHA for 0624828
packages/@vuepress/theme-default/components/SidebarLink.vue
@@ -32,12 +32,13 @@ export default {
32
? renderExternal(h, item.path, item.title || item.path)
33
: renderLink(h, item.path, item.title || item.path, active)
34
35
- const configDepth = $page.frontmatter.sidebarDepth
36
- || sidebarDepth
37
- || $themeLocaleConfig.sidebarDepth
38
- || $themeConfig.sidebarDepth
39
-
40
- const maxDepth = configDepth == null ? 1 : configDepth
+ const maxDepth = [
+ $page.frontmatter.sidebarDepth,
+ sidebarDepth,
+ $themeLocaleConfig.sidebarDepth,
+ $themeConfig.sidebarDepth,
+ 1
41
+ ].find(depth => depth !== undefined);
42
43
const displayAllHeaders = $themeLocaleConfig.displayAllHeaders
44
|| $themeConfig.displayAllHeaders
0 commit comments