Parcourir la source

- [Hide Subtask boards from All Boards](https://github.com/wekan/wekan/issues/1990).
- Order All Boards by Starred, Color and Title.

Thanks to xet7 !

Closes #1990,
Related #641

Lauri Ojansivu il y a 6 ans
Parent
commit
8568728152
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. 2 1
      client/components/boards/boardsList.js

+ 2 - 1
client/components/boards/boardsList.js

@@ -25,8 +25,9 @@ BlazeComponent.extendComponent({
       archived: false,
       archived: false,
       'members.userId': Meteor.userId(),
       'members.userId': Meteor.userId(),
       type: 'board',
       type: 'board',
+      subtasksDefaultListId: null,
     }, {
     }, {
-      sort: ['title'],
+      sort: { stars: -1, color: 1, title: 1 },
     });
     });
   },
   },