mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 23:40:13 +01:00
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:
parent
299484f7b2
commit
8671f08a0e
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue