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.
2 parents 6f0a00e + 8a48222 commit 4d1156fCopy full SHA for 4d1156f
src/controllers/Lane.js
@@ -24,9 +24,9 @@ class Lane extends Component {
24
25
handleScroll = evt => {
26
const node = evt.target
27
- const elemScrolPosition = node.scrollHeight - node.scrollTop - node.clientHeight
+ const elemScrollPosition = node.scrollHeight - node.scrollTop - node.clientHeight
28
const {onLaneScroll} = this.props
29
- if (elemScrolPosition <= 0 && onLaneScroll && !this.state.loading) {
+ if (elemScrollPosition <= 0 && onLaneScroll && !this.state.loading) {
30
const {currentPage} = this.state
31
this.setState({loading: true})
32
const nextPage = currentPage + 1
0 commit comments