Resolve "Sort by album release date"

This commit is contained in:
Ciarán Ainsworth 2020-01-17 09:38:40 +01:00 committed by Eliot Berriot
parent f96b8e2dcf
commit 2fa9523e05
2 changed files with 2 additions and 1 deletions

View File

@ -0,0 +1 @@
Added the ability to sort albums by release date (#1013)

View File

@ -124,7 +124,7 @@ export default {
page: parseInt(this.defaultPage),
query: this.defaultQuery,
tags: (this.defaultTags || []).filter((t) => { return t.length > 0 }),
orderingOptions: [["creation_date", "creation_date"], ["title", "album_title"]]
orderingOptions: [["creation_date", "creation_date"], ["title", "album_title"],["release_date","release_date"]]
}
},
created() {