We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37506f7 commit 660ac59Copy full SHA for 660ac59
CHANGELOG.md
@@ -1,6 +1,7 @@
1
## react-coroutine v1.0.4
2
3
* Fix the issue with redundant updates due to late props comparison
4
+ * Fix broken reference to the current props state
5
6
## react-coroutine v1.0.3
7
modules/CoroutineRender.js
@@ -50,7 +50,7 @@ export default class AsyncComponent extends Component {
50
}
51
52
componentWillReceiveProps(nextProps, nextContext) {
53
- if (!isEqual(this, nextProps)) {
+ if (!isEqual(this.props, nextProps)) {
54
if (this.iterator && this.iterator.return) {
55
this.iterator.return();
56
0 commit comments