소스 검색

- Order All Boards by starred, color, board name and board description. Part 2.

Thanks to xet7 !
Lauri Ojansivu 6 년 전
부모
커밋
8f337f17e4
1개의 변경된 파일1개의 추가작업 그리고 4개의 파일을 삭제
  1. 1 4
      client/components/boards/boardsList.js

+ 1 - 4
client/components/boards/boardsList.js

@@ -26,11 +26,8 @@ BlazeComponent.extendComponent({
       'members.userId': Meteor.userId(),
       type: 'board',
       subtasksDefaultListId: null,
-    }, {
-      sort: { stars: -1, color: 1, title: 1, description: 1 },
-    });
+    }, { sort: [['stars', 'desc'], ['color', 'asc'], ['title', 'asc'], ['description', 'asc']] });
   },
-
   isStarred() {
     const user = Meteor.user();
     return user && user.hasStarred(this.currentData()._id);