Skip to content

Commit

Permalink
Merge pull request #3560 from Ben-Ro/master
Browse files Browse the repository at this point in the history
Sort boards non case sensitive
  • Loading branch information
juliushaertl authored Mar 22, 2022
2 parents 48cd275 + 62d68ed commit b9e4288
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 b9e4288

Please sign in to comment.