mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
Default list size.
This commit is contained in:
parent
1aa407027e
commit
c213b6414f
1 changed files with 3 additions and 1 deletions
|
|
@ -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 a new issue