Scroll to compose form rather than reply indicator on focus (#11182)

This commit is contained in:
ThibG 2019-06-26 14:28:36 +02:00 committad av Eugen Rochko
förälder 5b3d70ffa7
incheckning 39741fa2cd
1 ändrade filer med 2 tillägg och 2 borttagningar

Visa fil

@ -188,12 +188,12 @@ class ComposeForm extends ImmutablePureComponent {
}
return (
<div className='compose-form' ref={this.setRef}>
<div className='compose-form'>
<WarningContainer />
<ReplyIndicatorContainer />
<div className={`spoiler-input ${this.props.spoiler ? 'spoiler-input--visible' : ''}`}>
<div className={`spoiler-input ${this.props.spoiler ? 'spoiler-input--visible' : ''}`} ref={this.setRef}>
<AutosuggestInput
placeholder={intl.formatMessage(messages.spoiler_placeholder)}
value={this.props.spoilerText}