Default list size.

This commit is contained in:
Brian Cao 2023-08-18 12:39:31 -07:00
parent 1aa407027e
commit c213b6414f

View File

@ -185,7 +185,9 @@ function getPageFilters(filters: SearchFilter<any>): [
orderBy: string;
},
] {
const { pageSize = 10, page = 1, orderBy } = filters;
const pageSize = filters?.pageSize || 10;
const page = filters?.page || 1;
const orderBy = filters?.orderBy;
return [
{