Fix cannot show archived list bug

This commit is contained in:
Romulus Urakagi Tsai 2019-08-16 07:42:18 +00:00
parent 3084f24278
commit b778cea34f

View file

@ -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() {