Browse Source

Fix: Prevent submission using same logic as submit button disabling. (#6993)

This prevents submission through ctrl/cmd+enter when the submit button is disabled.
pull/4/head
Emelia Smith 6 years ago
committed by Eugen Rochko
parent
commit
6a895e1ab3
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      app/javascript/mastodon/features/compose/components/compose_form.js

+ 8
- 0
app/javascript/mastodon/features/compose/components/compose_form.js View File

@ -74,6 +74,14 @@ export default class ComposeForm extends ImmutablePureComponent {
this.props.onChange(this.autosuggestTextarea.textarea.value);
}
// Submit disabled:
const { is_submitting, is_uploading, anyMedia } = this.props;
const fulltext = [this.props.spoiler_text, countableText(this.props.text)].join('');
if (is_submitting || is_uploading || length(fulltext) > 500 || (fulltext.length !== 0 && fulltext.trim().length === 0 && !anyMedia)) {
return;
}
this.props.onSubmit();
}

Loading…
Cancel
Save