From e3f2696f315ec5dbc8599452ffa9148b65799339 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Martin?= Date: Wed, 23 Jul 2025 22:54:29 +0200 Subject: [PATCH] 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. --- ui/src/user/AddEditUserDialog.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/ui/src/user/AddEditUserDialog.tsx b/ui/src/user/AddEditUserDialog.tsx index 2ee7812..fb85d09 100644 --- a/ui/src/user/AddEditUserDialog.tsx +++ b/ui/src/user/AddEditUserDialog.tsx @@ -54,7 +54,6 @@ export default class AddEditDialog extends Component { margin="dense" className="name" label="Name *" - type="email" value={name} name="username" id="username"