فهرست منبع

- [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 سال پیش
والد
کامیت
8568728152
1فایلهای تغییر یافته به همراه2 افزوده شده و 1 حذف شده
  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 },
     });
   },