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 0655ab8d59
commit a88e028793

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