Signed-off-by: ben <git@rott.io>
This commit is contained in:
ben
2022-01-26 20:15:12 +01:00
committed by Julius Härtl
parent 4027f407f7
commit 62d68edc17

View File

@@ -78,7 +78,7 @@ export default {
}, },
computed: { computed: {
boardsSorted() { 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() { collapsible() {
return this.boards.length > 0 return this.boards.length > 0