Browse Source

fix error when single columns mode. (#4734)

pull/4/head
MitarashiDango 6 years ago
committed by Eugen Rochko
parent
commit
7be620775e
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      app/javascript/mastodon/features/ui/components/columns_area.js

+ 3
- 1
app/javascript/mastodon/features/ui/components/columns_area.js View File

@ -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