mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
Fix regression where CW is focused on reply (#7811)
This commit is contained in:
parent
53f0452b70
commit
09147186b7
@ -127,9 +127,7 @@ export default class ComposeForm extends ImmutablePureComponent {
|
|||||||
this.autosuggestTextarea.textarea.focus();
|
this.autosuggestTextarea.textarea.focus();
|
||||||
} else if(prevProps.is_submitting && !this.props.is_submitting) {
|
} else if(prevProps.is_submitting && !this.props.is_submitting) {
|
||||||
this.autosuggestTextarea.textarea.focus();
|
this.autosuggestTextarea.textarea.focus();
|
||||||
}
|
} else if (this.props.spoiler !== prevProps.spoiler) {
|
||||||
|
|
||||||
if (this.props.spoiler !== prevProps.spoiler) {
|
|
||||||
if (this.props.spoiler) {
|
if (this.props.spoiler) {
|
||||||
this.spoilerText.focus();
|
this.spoilerText.focus();
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user