fix error when single columns mode. (#4734)

main
MitarashiDango 7 years ago committed by Eugen Rochko
parent 4c76402ba1
commit 7be620775e

@ -57,7 +57,9 @@ export default class ColumnsArea extends ImmutablePureComponent {
}
handleChildrenContentChange() {
scrollRight(this.node);
if (!this.props.singleColumn) {
scrollRight(this.node);
}
}
handleSwipe = (index) => {

Loading…
Cancel
Save