dillon1000/react
Commit
Browse files Update todo example. fixes 'Create' that shouldn't happen
Currently, an `onBlur` creates a new todo on `TodoTextInput`. This makes sense for existing items but not for new items. I.e consider the following:
1. cursor on new item ("What needs to be done?")
2. click 'x' on the first item.
This results in two actions being fired:
1. TODO_CREATE, with an empty string as 'text'
2. TODO_DESTROY
The proposed fix doesn't send a TODO_CREATE if `text.trim() === "")`Changed paths1 file
First-parent comparisonexamples/todomvc-flux/js/components/Header.react.js ModifiedPatch
Files changed
Rendering syntax-highlighted changes…