This commit is contained in:
sir-wilhelm 2026-02-26 08:41:08 +01:00 committed by GitHub
commit cbdf998132
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 15 additions and 2 deletions

View file

@ -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 [