Skip to content

Commit

Permalink
fix(theme): docs html sidebar items should always be visible (#9531)
Browse files Browse the repository at this point in the history
  • Loading branch information
slorber committed Nov 30, 2023
1 parent d019fc6 commit 345ea6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/docusaurus-theme-common/src/utils/docsUtils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export function isVisibleSidebarItem(
// An unlisted item remains visible if it is active
return !item.unlisted || isActiveSidebarItem(item, activePath);
default:
return false;
return true;
}
}

Expand Down

0 comments on commit 345ea6c

Please sign in to comment.