mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-12-20 19:06:06 +01:00
Limit Group Cover to 30 Items
This commit is contained in:
parent
dd7aed8f90
commit
7b6e432650
@ -324,6 +324,10 @@ export default {
|
|||||||
var img = await this.buildCoverImg(validCovers[i], coverWidth, offsetLeft, zIndex, validCovers.length === 1)
|
var img = await this.buildCoverImg(validCovers[i], coverWidth, offsetLeft, zIndex, validCovers.length === 1)
|
||||||
outerdiv.appendChild(img)
|
outerdiv.appendChild(img)
|
||||||
coverImageEls.push(img)
|
coverImageEls.push(img)
|
||||||
|
|
||||||
|
if(coverImageEls.length >= 30) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.showCoverFan) {
|
if (this.showCoverFan) {
|
||||||
|
Loading…
Reference in New Issue
Block a user