Skip to content

Commit e85731b

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 6c0e2f6 + d9dd365 commit e85731b

3 files changed

Lines changed: 274 additions & 35 deletions

File tree

packages/backend/src/config/app-config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export function loadAppConfig(): AppConfig {
6969
serverName:
7070
process.env.STARQUERY_SERVER_NAME ?? (mode === 'hosted' ? 'Hosted Server' : 'Local Computer'),
7171
mode,
72-
requestBodyLimit: process.env.STARQUERY_REQUEST_BODY_LIMIT ?? '100mb',
72+
requestBodyLimit: process.env.STARQUERY_REQUEST_BODY_LIMIT ?? '99gb',
7373
auth: {
7474
enabled: mode !== 'local',
7575
sessionTtlHours: Number(process.env.STARQUERY_AUTH_SESSION_TTL_HOURS ?? '720'),

packages/frontend/src/components/common/DataPaginationBar.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const props = withDefaults(
1515
summary?: string | null
1616
}>(),
1717
{
18-
pageSizeOptions: () => [5, 10, 15, 25, 50, 100, 200, 500, 1000, 2000],
18+
pageSizeOptions: () => [5, 10, 15, 25, 50, 100, 200, 500, 1000, 2000, 5000, 10000, 1000000],
1919
canPrevious: false,
2020
canNext: false,
2121
disabled: false,

0 commit comments

Comments
 (0)