From: Sorin Davidoi Date: Sun, 25 Jun 2017 19:43:27 +0000 (+0200) Subject: fix(features/compose): Handle external changes to the textarea (#3632) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=4ce154009426038f0bb88d2e89b408ade928b1a2;p=mastodon.git fix(features/compose): Handle external changes to the textarea (#3632) --- diff --git a/app/javascript/mastodon/features/compose/components/compose_form.js b/app/javascript/mastodon/features/compose/components/compose_form.js index c379c1855..f7eeedc69 100644 --- a/app/javascript/mastodon/features/compose/components/compose_form.js +++ b/app/javascript/mastodon/features/compose/components/compose_form.js @@ -67,6 +67,12 @@ export default class ComposeForm extends ImmutablePureComponent { } handleSubmit = () => { + if (this.props.text !== this.autosuggestTextarea.textarea.value) { + // Something changed the text inside the textarea (e.g. browser extensions like Grammarly) + // Update the state to match the current text + this.props.onChange(this.autosuggestTextarea.textarea.value); + } + this.props.onSubmit(); }