Skip to content

Commit

Permalink
Merge pull request #54 from cmpadden/feat/remove-blog-index-limit
Browse files Browse the repository at this point in the history
feat: remove limit to blogs on articles index
  • Loading branch information
cmpadden authored May 12, 2024
2 parents 35c6144 + 6082e98 commit 0608c34
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pages/articles/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,10 @@ export default {
"summary",
])
.sort({ date: -1 })
.limit(5)
.find();
// .limit(5)
return {
articles,
};
Expand Down

0 comments on commit 0608c34

Please sign in to comment.