Skip to content
Snippets Groups Projects
Commit 7be62077 authored by MitarashiDango's avatar MitarashiDango Committed by Eugen Rochko
Browse files

fix error when single columns mode. (#4734)

parent 4c76402b
No related branches found
No related tags found
No related merge requests found
...@@ -57,7 +57,9 @@ export default class ColumnsArea extends ImmutablePureComponent { ...@@ -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) => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment