|
|
|
@ -84,7 +84,7 @@ class ComposeForm extends ImmutablePureComponent {
|
|
|
|
|
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)) {
|
|
|
|
|
if (is_submitting || is_uploading || length(fulltext) > 512 || (fulltext.length !== 0 && fulltext.trim().length === 0 && !anyMedia)) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -160,7 +160,7 @@ class ComposeForm extends ImmutablePureComponent {
|
|
|
|
|
const { intl, onPaste, showSearch, anyMedia } = this.props;
|
|
|
|
|
const disabled = this.props.is_submitting;
|
|
|
|
|
const text = [this.props.spoiler_text, countableText(this.props.text)].join('');
|
|
|
|
|
const disabledButton = disabled || this.props.is_uploading || length(text) > 500 || (text.length !== 0 && text.trim().length === 0 && !anyMedia);
|
|
|
|
|
const disabledButton = disabled || this.props.is_uploading || length(text) > 512 || (text.length !== 0 && text.trim().length === 0 && !anyMedia);
|
|
|
|
|
let publishText = '';
|
|
|
|
|
|
|
|
|
|
if (this.props.privacy === 'private' || this.props.privacy === 'direct') {
|
|
|
|
@ -212,7 +212,7 @@ class ComposeForm extends ImmutablePureComponent {
|
|
|
|
|
<SensitiveButtonContainer />
|
|
|
|
|
<SpoilerButtonContainer />
|
|
|
|
|
</div>
|
|
|
|
|
<div className='character-counter__wrapper'><CharacterCounter max={500} text={text} /></div>
|
|
|
|
|
<div className='character-counter__wrapper'><CharacterCounter max={512} text={text} /></div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className='compose-form__publish'>
|
|
|
|
|