Răsfoiți Sursa

- [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 6 ani în urmă
părinte
comite
8568728152
1 a modificat fișierele cu 2 adăugiri și 1 ștergeri
  1. 2 1
      client/components/boards/boardsList.js

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

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