Jelajahi Sumber

Try to get ordering of All Boards working so that it does
not keep reordering.

Thanks to bentiss, with Apache I-CLA.

Related #2241

Lauri Ojansivu 6 tahun lalu
induk
melakukan
afda0ed4da
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      client/components/boards/boardsList.js

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

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