Board search, removed limit of 10 cards

This commit is contained in:
Martin Filser 2021-10-21 13:19:17 +02:00
parent 90b0a93547
commit 20415b881c

View file

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