mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-03-06 16:09:46 +00:00
Merge c084766a24 into 1d0b7e383a
This commit is contained in:
commit
cbdf998132
2 changed files with 15 additions and 2 deletions
|
|
@ -389,7 +389,7 @@ export default {
|
|||
return this.filterData.publishedDecades || []
|
||||
},
|
||||
progress() {
|
||||
return [
|
||||
const items = [
|
||||
{
|
||||
id: 'finished',
|
||||
name: this.$strings.LabelFinished
|
||||
|
|
@ -398,6 +398,15 @@ export default {
|
|||
id: 'in-progress',
|
||||
name: this.$strings.LabelInProgress
|
||||
},
|
||||
]
|
||||
// only add "started series" filter in series view
|
||||
if (this.isSeries) {
|
||||
items.push({
|
||||
id: 'started-series',
|
||||
name: this.$strings.LabelStarted
|
||||
})
|
||||
}
|
||||
items.push(
|
||||
{
|
||||
id: 'not-started',
|
||||
name: this.$strings.LabelNotStarted
|
||||
|
|
@ -406,7 +415,8 @@ export default {
|
|||
id: 'not-finished',
|
||||
name: this.$strings.LabelNotFinished
|
||||
}
|
||||
]
|
||||
)
|
||||
return items
|
||||
},
|
||||
tracks() {
|
||||
return [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue