Browse Source

Do not scroll in the compose panel on single-column (#11093)

pull/4/head
ThibG 4 years ago
committed by Eugen Rochko
parent
commit
01e362316c
2 changed files with 3 additions and 2 deletions
  1. +2
    -1
      app/javascript/mastodon/features/compose/components/compose_form.js
  2. +1
    -1
      app/javascript/mastodon/features/ui/components/compose_panel.js

+ 2
- 1
app/javascript/mastodon/features/compose/components/compose_form.js View File

@ -60,6 +60,7 @@ class ComposeForm extends ImmutablePureComponent {
onPickEmoji: PropTypes.func.isRequired,
showSearch: PropTypes.bool,
anyMedia: PropTypes.bool,
singleColumn: PropTypes.bool,
};
static defaultProps = {
@ -115,7 +116,7 @@ class ComposeForm extends ImmutablePureComponent {
}
handleFocus = () => {
if (this.composeForm) {
if (this.composeForm && !this.props.singleColumn) {
this.composeForm.scrollIntoView();
}
}

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

@ -8,7 +8,7 @@ const ComposePanel = () => (
<div className='compose-panel'>
<SearchContainer openInRoute />
<NavigationContainer />
<ComposeFormContainer />
<ComposeFormContainer singleColumn />
<LinkFooter withHotkeys />
</div>
);

Loading…
Cancel
Save