diff --git a/src/components/navigation/AppNavigationBoardCategory.vue b/src/components/navigation/AppNavigationBoardCategory.vue index e6d078d31..d4a7ec202 100644 --- a/src/components/navigation/AppNavigationBoardCategory.vue +++ b/src/components/navigation/AppNavigationBoardCategory.vue @@ -29,7 +29,7 @@ {{ text }} @@ -78,6 +78,9 @@ export default { } }, computed: { + boardsSorted() { + return [...this.boards].sort((a, b) => (a.title < b.title) ? -1 : 1) + }, collapsible() { return this.boards.length > 0 },