mirror of
https://github.com/umami-software/umami.git
synced 2026-02-09 07:07:17 +01:00
Merge pull request #3292 from Maxime-J/journey-report-fix
Fix journey report
This commit is contained in:
commit
21a1487735
1 changed files with 2 additions and 2 deletions
|
|
@ -9,8 +9,8 @@ export async function POST(request: Request) {
|
|||
const schema = z.object({
|
||||
...reportParms,
|
||||
steps: z.coerce.number().min(3).max(7),
|
||||
startStep: z.string(),
|
||||
endStep: z.string(),
|
||||
startStep: z.string().optional(),
|
||||
endStep: z.string().optional(),
|
||||
});
|
||||
|
||||
const { auth, body, error } = await parseRequest(request, schema);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue