Merge pull request #55 from RubenPX/linebridge-update

fix typo `autocapitalize` & `autoCorrect`
This commit is contained in:
srgooglo 2022-05-06 15:00:37 +02:00 committed by GitHub
commit aac047423e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -14,8 +14,8 @@ const steps = [
content: (props) => {
return <div className="workorder_creator steps step content">
<antd.Input
autocorrect="off"
autocapitalize="none"
autoCorrect="off"
autoCapitalize="none"
onPressEnter={props.onPressEnter}
placeholder="@newuser"
onChange={(e) => {
@ -34,8 +34,8 @@ const steps = [
content: (props) => {
return <div className="workorder_creator steps step content">
<antd.Input.Password
autocorrect="off"
autocapitalize="none"
autoCorrect="off"
autoCapitalize="none"
onPressEnter={props.onPressEnter}
placeholder="Password"
onChange={(e) => {

View File

@ -15,8 +15,8 @@ const formInstance = [
icon: "User",
placeholder: "Username",
props: {
autocorrect: "off",
autocapitalize: "none",
autoCorrect: "off",
autoCapitalize: "none",
className: "login-form-username",
},
},