Remove `type="email"` from username field in AddEditUserDialog

As the username doesn't have to be an email, having email as the type is incorrect.
This change also makes it more consistent with the way it is defined in the login form.
This commit is contained in:
François Martin 2025-07-23 22:54:29 +02:00 committed by GitHub
parent db9183d2cf
commit e3f2696f31
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 1 deletions

View File

@ -54,7 +54,6 @@ export default class AddEditDialog extends Component<IProps, IState> {
margin="dense" margin="dense"
className="name" className="name"
label="Name *" label="Name *"
type="email"
value={name} value={name}
name="username" name="username"
id="username" id="username"