Chang Liu
Chang Liu
After some research, the issue is caused by ```pango 1.44.3``` which is one of the dependencies of ```librsvg```, because It was working fine with ```pango 1.42.4```. I cannot raise the...
The workaround for now is to uninstall ```librsvg``` and use default ```graphicsmagick```
@techinpark no solution. Can we raise the issue to that link?
I have the same issue. In my case, the validation will fail because it updates the value in the form state
After investigation, I think I know the reason now. See code below: https://github.com/CassetteRocks/react-infinite-scroller/blob/master/src/InfiniteScroll.js#L44 ```` componentDidUpdate() { this.attachScrollListener(); } ```` By design ```componentDidUpdate``` will be called every time when component receives...
Another solution is to always unregister all the ```EventListener``` before ```attachScrollListener``` get called, but need some clarification from the author whether this is a good approach or not