mirror of
https://github.com/umami-software/umami.git
synced 2026-02-07 22:27:16 +01:00
Replaced SettingsTable with DataTable.
This commit is contained in:
parent
0d9b6e8355
commit
9bb89c7e8b
24 changed files with 134 additions and 381 deletions
|
|
@ -189,7 +189,7 @@ function getPageFilters(filters: SearchFilter): [
|
|||
|
||||
return [
|
||||
{
|
||||
...(pageSize > 0 && { take: pageSize, skip: pageSize * (page - 1) }),
|
||||
...(pageSize > 0 && { take: +pageSize, skip: +pageSize * (page - 1) }),
|
||||
...(orderBy && {
|
||||
orderBy: [
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue