From 6d5c63913fb917558f1969df0dcce3563a848f8f Mon Sep 17 00:00:00 2001 From: thebigdavec Date: Sun, 13 Jun 2021 19:42:06 +0100 Subject: [PATCH] Change markdown limit to 1000 My friend was having issues where any tags from posts beyond the 10 most recent posts weren't showing up in the tech-tags in the sidebar. I changed the limit parameter in Sidebar.js to 1000 and it fixed the issue, so my friend suggested other users new to your starter-pack might have similar issues. So, I'm presenting this to you. Hope that's ok. --- src/components/sidebar/Sidebar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/sidebar/Sidebar.js b/src/components/sidebar/Sidebar.js index 9f96500..f944b38 100644 --- a/src/components/sidebar/Sidebar.js +++ b/src/components/sidebar/Sidebar.js @@ -34,7 +34,7 @@ const Sidebar = () => { } } allMarkdownRemark( - limit: 10 + limit: 1000 sort: { fields: [frontmatter___date], order: DESC } filter: { frontmatter: { published: { eq: true } } } ) {