mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-04-02 01:16:54 +02:00
Filter all episodes when selecting all
This commit is contained in:
parent
f5e892b862
commit
ab895fa8ed
@ -81,7 +81,7 @@ export default {
|
|||||||
},
|
},
|
||||||
selectAll: {
|
selectAll: {
|
||||||
get() {
|
get() {
|
||||||
return this.episodesSelected.length == this.episodes.length
|
return this.episodesSelected.length == this.episodes.filter((_, index) => !(this.episodes[index].enclosure && this.itemEpisodeMap[this.episodes[index].enclosure.url])).length
|
||||||
},
|
},
|
||||||
set(val) {
|
set(val) {
|
||||||
for (const key in this.selectedEpisodes) {
|
for (const key in this.selectedEpisodes) {
|
||||||
|
Loading…
Reference in New Issue
Block a user