about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTomohiro Suwa <neoen.gsn@gmail.com>2017-04-26 22:18:09 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-04-26 15:18:09 +0200
commit416c9675fc20be41ea4bbc915cf14c84170d5fe5 (patch)
tree941750f4d3aafe6c1664dc2c668fe1649ceedabd
parent6a1e2870537dffe4ffab7fc6c7e0508b28b78686 (diff)
Don't toot request with only blank characters (#2154)
* Don't toot request with only blank characters

* Enable toot button if no text
-rw-r--r--app/assets/javascripts/components/features/compose/components/compose_form.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/components/features/compose/components/compose_form.jsx b/app/assets/javascripts/components/features/compose/components/compose_form.jsx
index 464327cb5..7955aaba9 100644
--- 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>