]> cat aescling's git repositories - mastodon.git/commitdiff
Don't toot request with only blank characters (#2154)
authorTomohiro Suwa <neoen.gsn@gmail.com>
Wed, 26 Apr 2017 13:18:09 +0000 (22:18 +0900)
committerEugen Rochko <eugen@zeonfederated.com>
Wed, 26 Apr 2017 13:18:09 +0000 (15:18 +0200)
* Don't toot request with only blank characters

* Enable toot button if no text

app/assets/javascripts/components/features/compose/components/compose_form.jsx

index 464327cb583ce85e0c45261e9e58ad105237e263..7955aaba9c8156a31440e186d0b274675c0ac22f 100644 (file)
@@ -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>