Add limit to bills. #3150

This commit is contained in:
James Cole
2020-07-21 06:22:29 +02:00
parent 62fd701808
commit 858158d886
4 changed files with 7 additions and 5 deletions

View File

@@ -235,7 +235,7 @@ class Search implements SearchInterface
}
break;
case 'bill':
$result = $this->billRepository->searchBill($modifier['value']);
$result = $this->billRepository->searchBill($modifier['value'], 25);
if ($result->count() > 0) {
$collector->setBills($result);
}