fixing bug 2281

This commit is contained in:
Cayo Puigdefabregas 2021-06-16 17:07:00 +02:00
parent 00d2b2e81f
commit 5dc1b79596
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ class LotView(View):
query = self.visibility_filter(query)
if args['search']:
query = query.filter(Lot.name.ilike(args['search'] + '%'))
lots = query.paginate(per_page=6 if args['search'] else 30)
lots = query.paginate(per_page=6 if args['search'] else query.count())
return things_response(
self.schema.dump(lots.items, many=True, nested=2),
lots.page, lots.per_page, lots.total, lots.prev_num, lots.next_num