Skip to content

Commit

Permalink
Autofocus Grocery list item input on edit (#43)
Browse files Browse the repository at this point in the history
When double clicking, sometimes the input box would not be focused
(especially on mobile), and this simply fixes that.
  • Loading branch information
Rycieos authored May 3, 2020
1 parent f9daa85 commit 1bb88eb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions modules/list/components/ListItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ export default class ListItem extends React.Component {
<input
ref="editField"
className="edit"
autoFocus
value={ this.state.title }
onBlur={ this.handleSubmit }
onChange={ this.handleChange }
Expand Down

0 comments on commit 1bb88eb

Please sign in to comment.