Fix scroll to top not registering because of wrong debounce usage
This commit is contained in:
parent
f73aec19a8
commit
2ff3e458bf
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ const mapDispatchToProps = (dispatch, { type, id }) => ({
|
||||||
dispatch(expandTimeline(type, id));
|
dispatch(expandTimeline(type, id));
|
||||||
},
|
},
|
||||||
|
|
||||||
@debounce(300, true)
|
@debounce(300)
|
||||||
onScrollToTop () {
|
onScrollToTop () {
|
||||||
dispatch(scrollTopTimeline(type, true));
|
dispatch(scrollTopTimeline(type, true));
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue