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 10, 2023
1 parent 328e5f7 commit e68ef88
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 e68ef88

Please sign in to comment.