logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 416c9675fc20be41ea4bbc915cf14c84170d5fe5
parent: 6a1e2870537dffe4ffab7fc6c7e0508b28b78686
Author: Tomohiro Suwa <neoen.gsn@gmail.com>
Date:   Wed, 26 Apr 2017 22:18:09 +0900

Don't toot request with only blank characters (#2154)

* Don't toot request with only blank characters

* Enable toot button if no text

Diffstat:

Mapp/assets/javascripts/components/features/compose/components/compose_form.jsx2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/assets/javascripts/components/features/compose/components/compose_form.jsx b/app/assets/javascripts/components/features/compose/components/compose_form.jsx @@ -174,7 +174,7 @@ class ComposeForm extends React.PureComponent { <div className='compose-form__publish'> <div className='character-counter__wrapper'><CharacterCounter max={500} text={text} /></div> - <div className='compose-form__publish-button-wrapper'><Button text={publishText} onClick={this.handleSubmit} disabled={disabled || text.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]/g, "_").length > 500} block /></div> + <div className='compose-form__publish-button-wrapper'><Button text={publishText} onClick={this.handleSubmit} disabled={disabled || text.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]/g, "_").length > 500 || (text.length !==0 && text.trim().length === 0)} block /></div> </div> </div> </div>