Merge branch '1013-sort-by-album-release-date' into 'develop'
Resolve "Sort by album release date" Closes #1013 See merge request funkwhale/funkwhale!998
This commit is contained in:
commit
db1cb30df8
2 changed files with 2 additions and 1 deletions
1
changes/changelog.d/1013.enhancement
Normal file
1
changes/changelog.d/1013.enhancement
Normal file
|
|
@ -0,0 +1 @@
|
|||
Added the ability to sort albums by release date (#1013)
|
||||
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue