Skip to content

fix: show all blog entries in Docusaurus sidebar#3358

Merged
mergify[bot] merged 2 commits intomainfrom
copilot/fix-sidebar-blog-entry-display
Mar 5, 2026
Merged

fix: show all blog entries in Docusaurus sidebar#3358
mergify[bot] merged 2 commits intomainfrom
copilot/fix-sidebar-blog-entry-display

Conversation

Copy link
Contributor

Copilot AI commented Mar 5, 2026

The blog sidebar was capped at 5 entries (Docusaurus default), hiding older posts. The repo currently has 8 blog posts.

Changes

  • Website/docusaurus.config.js: set blogSidebarCount: "ALL" in the blog preset to display every post in the sidebar
blog: {
  showReadingTime: true,
  blogSidebarCount: "ALL",   // was implicitly 5
  editUrl: "...",
},

Related issue(s)

Copilot generated summary

Copilot summary

Adds a single option to the Docusaurus blog preset configuration. blogSidebarCount defaults to 5 in Docusaurus, which silently truncates the sidebar to the 5 most recent posts. Setting it to "ALL" ensures every blog entry is listed regardless of total count.

To-Do

Contributing

By submitting this pull request, I confirm the following:


💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.

Co-authored-by: BornToBeRoot <16019165+BornToBeRoot@users.noreply.github.com>
Copilot AI changed the title [WIP] Fix sidebar to show all Docusaurus blog entries fix: show all blog entries in Docusaurus sidebar Mar 5, 2026
@BornToBeRoot BornToBeRoot marked this pull request as ready for review March 5, 2026 09:51
Copilot AI review requested due to automatic review settings March 5, 2026 09:51
@BornToBeRoot BornToBeRoot added this to the next-release milestone Mar 5, 2026
@mergify mergify bot merged commit 0ecdad0 into main Mar 5, 2026
6 checks passed
@mergify mergify bot deleted the copilot/fix-sidebar-blog-entry-display branch March 5, 2026 09:52
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR fixes the blog sidebar in the Docusaurus website to display all blog posts instead of the default limit of 5. With 7 blog entries currently in the repository, 2 older posts were being hidden from the sidebar.

Changes:

  • Added blogSidebarCount: "ALL" to the blog preset configuration in docusaurus.config.js to show all blog entries in the sidebar.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants