fix error when single columns mode. (#4734)

lolsob-rspec
MitarashiDango 2017-08-29 23:11:28 +09:00 committed by Eugen Rochko
parent 3135d20283
commit 5a1614ce9b
1 changed files with 3 additions and 1 deletions

View File

@ -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) => {