Try to get ordering of All Boards working so that it does

not keep reordering.

Thanks to bentiss, with Apache I-CLA.

Related #2241
This commit is contained in:
Lauri Ojansivu 2019-03-11 19:56:17 +02:00
parent 473f389bbe
commit afda0ed4da

View file

@ -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();