mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-07-24 04:35:59 +02:00
Fix:Podcast library playlists page incorrect label in toolbar #1135
This commit is contained in:
parent
7c2d51f811
commit
9f89fcd968
1 changed files with 5 additions and 5 deletions
|
@ -64,14 +64,14 @@ export default {
|
||||||
return this.$route.query || {}
|
return this.$route.query || {}
|
||||||
},
|
},
|
||||||
entityTitle() {
|
entityTitle() {
|
||||||
if (this.isPodcast) return this.$strings.LabelPodcasts
|
if (this.page === 'library') {
|
||||||
if (this.page === 'library') return this.$strings.LabelBooks
|
return this.isPodcast ? this.$strings.LabelPodcasts : this.$strings.LabelBooks
|
||||||
else if (this.page === 'series') {
|
} else if (this.page === 'playlists') {
|
||||||
|
return this.$strings.ButtonPlaylists
|
||||||
|
} else if (this.page === 'series') {
|
||||||
return this.$strings.LabelSeries
|
return this.$strings.LabelSeries
|
||||||
} else if (this.page === 'collections') {
|
} else if (this.page === 'collections') {
|
||||||
return this.$strings.ButtonCollections
|
return this.$strings.ButtonCollections
|
||||||
} else if (this.page === 'playlists') {
|
|
||||||
return this.$strings.ButtonPlaylists
|
|
||||||
} else if (this.page === 'authors') {
|
} else if (this.page === 'authors') {
|
||||||
return this.$strings.LabelAuthors
|
return this.$strings.LabelAuthors
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue