diff options
author | Lauri Ojansivu <x@xet7.org> | 2019-03-08 10:44:20 +0200 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2019-03-08 10:44:20 +0200 |
commit | 7836ab83d02adc40bc59bc4393191abec0a4f636 (patch) | |
tree | 529c70e983d0a1e3513ddb04aa31d2e421491789 /client/components | |
parent | 856872815292590e0c4eff2848ea1b857a318dc4 (diff) | |
download | wekan-7836ab83d02adc40bc59bc4393191abec0a4f636.tar.gz wekan-7836ab83d02adc40bc59bc4393191abec0a4f636.tar.bz2 wekan-7836ab83d02adc40bc59bc4393191abec0a4f636.zip |
- Order All Boards by Starred, Color and Title and Description.
Thanks to xet7 !
Closes #1990,
Related #252
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 8dd05913..74a8e4d4 100644 --- a/client/components/boards/boardsList.js +++ b/client/components/boards/boardsList.js @@ -27,7 +27,7 @@ BlazeComponent.extendComponent({ type: 'board', subtasksDefaultListId: null, }, { - sort: { stars: -1, color: 1, title: 1 }, + sort: { stars: -1, color: 1, title: 1, description: 1 }, }); }, |