Board search, remove limit of 10 lists

This commit is contained in:
Martin Filser 2021-10-21 13:20:10 +02:00
parent 20415b881c
commit 5eb4cff991

View file

@ -950,7 +950,7 @@ Boards.helpers({
} else {
query.type = { $nin: ['template-list'] };
}
const projection = { limit: 10, sort: { createdAt: -1 } };
const projection = { sort: { createdAt: -1 } };
if (term) {
const regex = new RegExp(term, 'i');