fix: correct SearchRequest field names (offset/limit, sortField/sortDir)
All checks were successful
CI / build (push) Successful in 1m19s
CI / cleanup-branch (push) Has been skipped
CI / docker (push) Successful in 50s
CI / deploy (push) Successful in 40s
CI / deploy-feature (push) Has been skipped

Dashboard was sending page/size but backend expects offset/limit.
Schema also had sort/order instead of sortField/sortDir.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-03-19 17:55:27 +01:00
parent 045d9ea890
commit ea5b5a685d
2 changed files with 5 additions and 5 deletions

View File

@@ -27,7 +27,7 @@ export default function Dashboard() {
timeFrom, timeTo,
routeId: routeId || undefined,
group: appId || undefined,
page: 0, size: 50,
offset: 0, limit: 50,
}, true);
const { data: detail } = useExecutionDetail(selectedId);
const { data: snapshot } = useProcessorSnapshot(selectedId, processorIdx);