mirror of
https://github.com/wekan/wekan.git
synced 2025-12-26 12:18:49 +01:00
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:
parent
473f389bbe
commit
afda0ed4da
1 changed files with 1 additions and 1 deletions
|
|
@ -26,7 +26,7 @@ BlazeComponent.extendComponent({
|
||||||
'members.userId': Meteor.userId(),
|
'members.userId': Meteor.userId(),
|
||||||
type: 'board',
|
type: 'board',
|
||||||
subtasksDefaultListId: null,
|
subtasksDefaultListId: null,
|
||||||
}, { sort: [['stars', 'desc'], ['color', 'asc'], ['title', 'asc'], ['description', 'asc']] });
|
}, { sort: [['stars', 'desc'], ['color', 'asc'], ['title', 'asc'], ['description', 'asc'], ['_id', 'asc']] });
|
||||||
},
|
},
|
||||||
isStarred() {
|
isStarred() {
|
||||||
const user = Meteor.user();
|
const user = Meteor.user();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue