Skip to content

Commit 0624828

Browse files
DEULOSulivz
authored andcommittedJul 29, 2019
fix($theme-default): sidebarDepth: 0 not working in YAML (close: #1701) (#1702)
1 parent e3393e3 commit 0624828

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed
 

‎packages/@vuepress/theme-default/components/SidebarLink.vue

+7-6
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,13 @@ export default {
3232
? renderExternal(h, item.path, item.title || item.path)
3333
: renderLink(h, item.path, item.title || item.path, active)
3434
35-
const configDepth = $page.frontmatter.sidebarDepth
36-
|| sidebarDepth
37-
|| $themeLocaleConfig.sidebarDepth
38-
|| $themeConfig.sidebarDepth
39-
40-
const maxDepth = configDepth == null ? 1 : configDepth
35+
const maxDepth = [
36+
$page.frontmatter.sidebarDepth,
37+
sidebarDepth,
38+
$themeLocaleConfig.sidebarDepth,
39+
$themeConfig.sidebarDepth,
40+
1
41+
].find(depth => depth !== undefined);
4142
4243
const displayAllHeaders = $themeLocaleConfig.displayAllHeaders
4344
|| $themeConfig.displayAllHeaders

0 commit comments

Comments
 (0)
Please sign in to comment.