Browse Source

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 years ago
parent
commit
8671f08a0e
1 changed files with 1 additions and 1 deletions
  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();