fix error when single columns mode. (#4734)

th-downstream
MitarashiDango 7 years ago committed by Eugen Rochko
parent 3135d20283
commit 5a1614ce9b

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

Loading…
Cancel
Save