diff --git a/src/components/navigation/AppNavigationBoardCategory.vue b/src/components/navigation/AppNavigationBoardCategory.vue index 62f291717..1914e8b17 100644 --- a/src/components/navigation/AppNavigationBoardCategory.vue +++ b/src/components/navigation/AppNavigationBoardCategory.vue @@ -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