mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-16 02:05:04 +01:00
Default list size.
This commit is contained in:
parent
1aa407027e
commit
c213b6414f
@ -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 [
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user