浏览代码

Remove ordering of cards by stars/color/description, so that cards would not reorder all the time.

Thanks to xet7 !

Closes #2241
Lauri Ojansivu 6 年之前
父节点
当前提交
8671f08a0e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      client/components/boards/boardsList.js

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

@@ -25,7 +25,7 @@ BlazeComponent.extendComponent({
       archived: false,
       'members.userId': Meteor.userId(),
       type: 'board',
-    }, { sort: [['stars', 'desc'], ['color', 'asc'], ['title', 'asc'], ['description', 'asc'], ['_id', 'asc']] });
+    }, { sort: ['title'] });
   },
   isStarred() {
     const user = Meteor.user();