Reduce min name length

This commit is contained in:
2025-09-14 17:57:24 +02:00
parent 5c66430cb4
commit 527c9b7428
4 changed files with 29 additions and 4 deletions
+2 -2
View File
@@ -74,11 +74,11 @@ async function submit() {
:label="t('auth.name')"
:placeholder="t('auth.name')"
max-length="64"
min-length="5"
min-length="1"
:rules="[
validation.required(t('auth.name')),
validation.max(t('auth.name'), 64),
validation.min(t('auth.name'), 5)
validation.min(t('auth.name'), 1)
]"
required
>