change(ui) - user form input length
This commit is contained in:
parent
891ea86182
commit
1db2b3c511
1 changed files with 2 additions and 0 deletions
|
|
@ -59,6 +59,7 @@ function UserForm(props: Props) {
|
|||
<Input
|
||||
name="name"
|
||||
autoFocus
|
||||
maxLength="50"
|
||||
value={ user.name }
|
||||
onChange={ write }
|
||||
className="w-full"
|
||||
|
|
@ -71,6 +72,7 @@ function UserForm(props: Props) {
|
|||
<Input
|
||||
disabled={user.exists()}
|
||||
name="email"
|
||||
maxLength="320"
|
||||
value={ user.email }
|
||||
onChange={ write }
|
||||
className="w-full"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue