Skip to content

Commit

Permalink
fixes #3410
Browse files Browse the repository at this point in the history
Signed-off-by: ben <git@rott.io>
  • Loading branch information
ben authored and backportbot[bot] committed Mar 22, 2022
1 parent 0655ab8 commit a88e028
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/navigation/AppNavigationBoardCategory.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a88e028

Please sign in to comment.