Signed-off-by: ben <git@rott.io>
This commit is contained in:
ben
2022-03-22 08:43:03 +00:00
committed by backportbot[bot]
parent 0655ab8d59
commit a88e028793
@@ -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