Update:Remove limit on home page local media shelves #301

This commit is contained in:
advplyr 2022-08-07 08:38:30 -05:00
parent 5430c10424
commit db98492d4f

View file

@ -80,7 +80,7 @@ export default {
id: 'local-books',
label: 'Local Books',
type: 'book',
entities: books.slice(0, 10)
entities: books
})
}
if (podcasts.length) {
@ -88,7 +88,7 @@ export default {
id: 'local-podcasts',
label: 'Local Podcasts',
type: 'podcast',
entities: podcasts.slice(0, 10)
entities: podcasts
})
}