Skip to content
This repository has been archived by the owner on Jul 14, 2023. It is now read-only.

Commit

Permalink
remove binding
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Tikhonov committed Jul 5, 2016
1 parent 253f408 commit 19e6c50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/ItemList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const ItemList = ({
key={todo.id}
text={todo.text}
active={todo.active}
handleClick={() => { handleItemClick(todo.id) }}
handleClick={function () { handleItemClick(todo.id) }}
/>
)
})}
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
"react-redux": "^4.4.5",
"react-router": "^2.4.1",
"react-router-redux": "^4.0.5",
"recompose": "^0.20.2",
"redux": "^3.5.2",
"winston": "^2.2.0"
}
Expand Down

0 comments on commit 19e6c50

Please sign in to comment.