int issue in dashboard

This commit is contained in:
ABHISHEK 2025-10-01 16:14:17 +05:30
parent eca6b069f6
commit 8c29f2ca25
2 changed files with 3 additions and 3 deletions

View file

@ -3,11 +3,11 @@ services:
umami:
image: ghcr.io/umami-software/umami:postgresql-latest
ports:
- "3000:3000"
- "3001:3000"
environment:
DATABASE_URL: postgresql://umami:umami@db:5432/umami
DATABASE_TYPE: postgresql
APP_SECRET: replace-me-with-a-random-string
APP_SECRET: umami-local-development-secret-key-2025
depends_on:
db:
condition: service_healthy

View file

@ -55,7 +55,7 @@ export function DashboardPage() {
limit={pageSize}
/>
<Pager
page={page}
page={Number(page) || 1}
pageSize={pageSize}
count={result?.count}
onPageChange={handlePageChange}