mirror of
https://github.com/umami-software/umami.git
synced 2026-02-10 23:57:12 +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(),
|
screen: z.string().max(11).optional(),
|
||||||
title: z.string().optional(),
|
title: z.string().optional(),
|
||||||
url: urlOrPathParam,
|
url: urlOrPathParam,
|
||||||
name: z.string().url().max(50).optional(),
|
name: z.string().max(50).optional(),
|
||||||
tag: z.string().max(50).optional(),
|
tag: z.string().max(50).optional(),
|
||||||
ip: z.string().ip().optional(),
|
ip: z.string().ip().optional(),
|
||||||
userAgent: z.string().optional(),
|
userAgent: z.string().optional(),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue