try limiting list to first 250

This commit is contained in:
Sam Carlton 2020-12-01 22:59:34 -06:00
parent 02048abfb1
commit 9cf0a248a9

View file

@ -99,7 +99,7 @@ export default {
// const sortedList = list.sort(byTimeThenNull)
if (this.category.slug === 'homebrew') {
return filteredList.slice(200, filteredList.length)
return filteredList.slice(0, 250)
}
return filteredList