mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-08-04 10:14:36 +02:00
Limit Group Cover to 30 Items
This commit is contained in:
parent
dd7aed8f90
commit
7b6e432650
1 changed files with 4 additions and 0 deletions
|
@ -324,6 +324,10 @@ export default {
|
|||
var img = await this.buildCoverImg(validCovers[i], coverWidth, offsetLeft, zIndex, validCovers.length === 1)
|
||||
outerdiv.appendChild(img)
|
||||
coverImageEls.push(img)
|
||||
|
||||
if(coverImageEls.length >= 30) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (this.showCoverFan) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue