mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +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;
|
orderBy: string;
|
||||||
},
|
},
|
||||||
] {
|
] {
|
||||||
const { pageSize = 10, page = 1, orderBy } = filters;
|
const pageSize = filters?.pageSize || 10;
|
||||||
|
const page = filters?.page || 1;
|
||||||
|
const orderBy = filters?.orderBy;
|
||||||
|
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user