Try slicing homebrew list to 200

This commit is contained in:
Sam Carlton 2020-12-01 22:51:08 -06:00
parent 5d9f09068e
commit b98324a717

View file

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