Skip to content

Commit 64f2b7a

Browse files
authored
Merge pull request #104 from TheUniverseofCoding/f/remove-autocomplete
fix: fix autocomplete bug
2 parents a8c1aab + 75a77c0 commit 64f2b7a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

client/components/QuestionDisplay/QuestionForm.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ class QuestionForm extends Component {
8484
value={ description }
8585
name="description"
8686
className="form-input"
87-
autocomplete="off"
87+
autoComplete="off"
8888
onChange={ this.handleDescriptionChange }
8989
/>
9090
</div>

client/components/auth-form.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ render(){
3636
<div className="field">
3737
<label htmlFor="email" className="label">> Email</label>
3838
<div className="control">
39-
<input name="email" type="email" className="input" autocomplete="off" required/>
39+
<input name="email" type="email" className="input" autocomplete="off" spellcheck="false" required/>
4040
</div>
4141
</div>
4242
<div className="field">

0 commit comments

Comments
 (0)