summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2019-03-14 00:16:39 +0200
committerLauri Ojansivu <x@xet7.org>2019-03-14 00:16:39 +0200
commit8671f08a0ea6ca24b72dcfd851d9587063ccdcbe (patch)
tree25b3d7ca27069bcea5c37e0c74a9f3b542e6b00f /client
parent299484f7b28b7bca134618a8c95102626c935b6d (diff)
downloadwekan-8671f08a0ea6ca24b72dcfd851d9587063ccdcbe.tar.gz
wekan-8671f08a0ea6ca24b72dcfd851d9587063ccdcbe.tar.bz2
wekan-8671f08a0ea6ca24b72dcfd851d9587063ccdcbe.zip
Remove ordering of cards by stars/color/description, so that cards would not reorder all the time.
Thanks to xet7 ! Closes #2241
Diffstat (limited to 'client')
-rw-r--r--client/components/boards/boardsList.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/components/boards/boardsList.js b/client/components/boards/boardsList.js
index ad5ee551..3aacdedb 100644
--- a/client/components/boards/boardsList.js
+++ b/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();