fix(lint): Remove return statement from editable list

This commit is contained in:
Ben Gotow 2015-12-14 15:47:58 -08:00
parent b62a129e06
commit 64fc74cc6a

View file

@ -170,7 +170,6 @@ class EditableList extends Component {
// Handlers
_onEditInputBlur = (event, item, idx)=> {
return;
this._updateItem(event.target.value, item, idx);
}