mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 12:47:13 +01:00
Fixed validation.
This commit is contained in:
parent
e2523d2604
commit
cb660d7dd7
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ const schema = z.object({
|
|||
screen: z.string().max(11).optional(),
|
||||
title: z.string().optional(),
|
||||
url: urlOrPathParam,
|
||||
name: z.string().url().max(50).optional(),
|
||||
name: z.string().max(50).optional(),
|
||||
tag: z.string().max(50).optional(),
|
||||
ip: z.string().ip().optional(),
|
||||
userAgent: z.string().optional(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue