Board search, removed limit of 10 cards

reviewable/pr4082/r1
Martin Filser 4 years ago
parent 90b0a93547
commit 20415b881c
  1. 2
      models/boards.js

@ -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');

Loading…
Cancel
Save