diff options
author | Lauri Ojansivu <x@xet7.org> | 2019-03-11 19:56:17 +0200 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2019-03-11 19:56:17 +0200 |
commit | afda0ed4da3e0ee37b4f0227a108b96f5d8f624d (patch) | |
tree | 28076989569e8a5a5c31156ac3f11863868e03d5 /client/components | |
parent | 473f389bbe76c5c1142f49343c4b399147cabd56 (diff) | |
download | wekan-afda0ed4da3e0ee37b4f0227a108b96f5d8f624d.tar.gz wekan-afda0ed4da3e0ee37b4f0227a108b96f5d8f624d.tar.bz2 wekan-afda0ed4da3e0ee37b4f0227a108b96f5d8f624d.zip |
Try to get ordering of All Boards working so that it does
not keep reordering.
Thanks to bentiss, with Apache I-CLA.
Related #2241
Diffstat (limited to 'client/components')
-rw-r--r-- | client/components/boards/boardsList.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/components/boards/boardsList.js b/client/components/boards/boardsList.js index fcd1a6ce..3a49a8bf 100644 --- a/client/components/boards/boardsList.js +++ b/client/components/boards/boardsList.js @@ -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(); |