summaryrefslogtreecommitdiffstats
path: root/client/components/boards/boardArchive.js
diff options
context:
space:
mode:
authorboeserwolf <github@noxware.de>2020-04-19 12:30:21 +0300
committerboeserwolf <github@noxware.de>2020-04-19 13:49:07 +0300
commit10fcc19b7f9307e71f01b6abca055806d69f7d4e (patch)
treee236eb00f9b72ca67b0113f49d45803eccd55477 /client/components/boards/boardArchive.js
parent9f396e9038712e0223cbd47b7bc14253610f9af9 (diff)
downloadwekan-10fcc19b7f9307e71f01b6abca055806d69f7d4e.tar.gz
wekan-10fcc19b7f9307e71f01b6abca055806d69f7d4e.tar.bz2
wekan-10fcc19b7f9307e71f01b6abca055806d69f7d4e.zip
Add sortDefault helper for sorting boards
Diffstat (limited to 'client/components/boards/boardArchive.js')
-rw-r--r--client/components/boards/boardArchive.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/components/boards/boardArchive.js b/client/components/boards/boardArchive.js
index d3e65bd8..9f4d60a1 100644
--- a/client/components/boards/boardArchive.js
+++ b/client/components/boards/boardArchive.js
@@ -7,7 +7,7 @@ BlazeComponent.extendComponent({
return Boards.find(
{ archived: true },
{
- sort: ['title'],
+ sort: { sort: 1 /* boards default sorting */ }
},
);
},