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

Thanks to xet7 !

Closes #2241
This commit is contained in:
Lauri Ojansivu 2019-03-14 00:16:39 +02:00
parent 299484f7b2
commit 8671f08a0e

View file

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