mirror of
https://github.com/wekan/wekan.git
synced 2025-04-22 21:17:18 -04:00
Fix cannot show archived list bug
This commit is contained in:
parent
3084f24278
commit
b778cea34f
1 changed files with 1 additions and 4 deletions
|
@ -407,10 +407,7 @@ Boards.helpers({
|
|||
},
|
||||
|
||||
lists() {
|
||||
return Lists.find(
|
||||
{ boardId: this._id, archived: false },
|
||||
{ sort: { sort: 1 } },
|
||||
);
|
||||
return Lists.find({ boardId: this._id }, { sort: { sort: 1 } });
|
||||
},
|
||||
|
||||
nullSortLists() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue