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

Thanks to xet7 !

Closes #2241
reviewable/pr2263/r1
Lauri Ojansivu 6 years ago
parent 299484f7b2
commit 8671f08a0e
  1. 2
      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();

Loading…
Cancel
Save