Skip to content

Commit f8cd102

Browse files
authored
Merge pull request #2628 from PiyushChandra17/piyush/fix-autocapitalize
fix autocapitalize in mweb safari
2 parents 107ef19 + 4cec94a commit f8cd102

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

client/modules/User/components/LoginForm.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ function LoginForm() {
3434
type="text"
3535
id="email"
3636
autoComplete="username"
37+
autoCapitalize="none"
3738
{...field.input}
3839
/>
3940
{field.meta.touched && field.meta.error && (

client/modules/User/components/SignupForm.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ function SignupForm() {
6464
type="text"
6565
id="username"
6666
autoComplete="username"
67+
autoCapitalize="none"
6768
{...field.input}
6869
/>
6970
{field.meta.touched && field.meta.error && (

0 commit comments

Comments
 (0)