Try slicing homebrew list to after 200

This commit is contained in:
Sam Carlton 2020-12-01 22:55:14 -06:00
parent b98324a717
commit 02048abfb1

View file

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