mirror of
https://github.com/umami-software/umami.git
synced 2026-02-17 19:15:37 +01:00
int issue in dashboard
This commit is contained in:
parent
eca6b069f6
commit
8c29f2ca25
2 changed files with 3 additions and 3 deletions
|
|
@ -3,11 +3,11 @@ services:
|
||||||
umami:
|
umami:
|
||||||
image: ghcr.io/umami-software/umami:postgresql-latest
|
image: ghcr.io/umami-software/umami:postgresql-latest
|
||||||
ports:
|
ports:
|
||||||
- "3000:3000"
|
- "3001:3000"
|
||||||
environment:
|
environment:
|
||||||
DATABASE_URL: postgresql://umami:umami@db:5432/umami
|
DATABASE_URL: postgresql://umami:umami@db:5432/umami
|
||||||
DATABASE_TYPE: postgresql
|
DATABASE_TYPE: postgresql
|
||||||
APP_SECRET: replace-me-with-a-random-string
|
APP_SECRET: umami-local-development-secret-key-2025
|
||||||
depends_on:
|
depends_on:
|
||||||
db:
|
db:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
|
|
|
||||||
|
|
@ -55,7 +55,7 @@ export function DashboardPage() {
|
||||||
limit={pageSize}
|
limit={pageSize}
|
||||||
/>
|
/>
|
||||||
<Pager
|
<Pager
|
||||||
page={page}
|
page={Number(page) || 1}
|
||||||
pageSize={pageSize}
|
pageSize={pageSize}
|
||||||
count={result?.count}
|
count={result?.count}
|
||||||
onPageChange={handlePageChange}
|
onPageChange={handlePageChange}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue