mirror of
https://github.com/wekan/wekan.git
synced 2025-04-20 12:07:11 -04:00
Fix #1561 Filter checklist items
This commit is contained in:
parent
eae4bb2d37
commit
09bc8ac44c
1 changed files with 2 additions and 2 deletions
|
@ -34,9 +34,9 @@ Checklists.helpers({
|
|||
return ChecklistItems.find({ checklistId: this._id }).count();
|
||||
},
|
||||
items() {
|
||||
return ChecklistItems.find(Filter.mongoSelector({
|
||||
return ChecklistItems.find({
|
||||
checklistId: this._id,
|
||||
}), { sort: ['sort'] });
|
||||
}, { sort: ['sort'] });
|
||||
},
|
||||
finishedCount() {
|
||||
return ChecklistItems.find({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue