Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gaearon committed Apr 12, 2016
1 parent f9af2d7 commit 4173886
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion reducers/todos.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ function todo(state, action) {
switch (action.type) {
case ADD_TODO:
return {
text: action.text,
id: action.id,
text: action.text
relatedId: null
}
case EDIT_TODO:
return {
Expand Down

0 comments on commit 4173886

Please sign in to comment.