Signed-off-by: ben <git@rott.io>
This commit is contained in:
ben
2022-01-26 20:15:12 +01:00
committed by backportbot[bot]
parent 0c7768b36d
commit 90938d5f58

View File

@@ -78,7 +78,7 @@ export default {
},
computed: {
boardsSorted() {
return [...this.boards].sort((a, b) => (a.title < b.title) ? -1 : 1)
return [...this.boards].sort((a, b) => a.title.localeCompare(b.title))
},
collapsible() {
return this.boards.length > 0