]> cat aescling's git repositories - mastodon.git/commitdiff
Fix compose_form.js for #2904 (#2960)
authorAA4ch1 <aa4ch1@gmail.com>
Wed, 10 May 2017 12:41:39 +0000 (21:41 +0900)
committerEugen Rochko <eugen@zeonfederated.com>
Wed, 10 May 2017 12:41:39 +0000 (14:41 +0200)
app/javascript/mastodon/features/compose/components/compose_form.js

index 68179244a2dd097a360a5026e1d7421d857fb8f6..530e50b2ff1148820dbd9b3a10dca656c47dc088 100644 (file)
@@ -176,7 +176,7 @@ class ComposeForm extends ImmutablePureComponent {
 
           <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 || (text.length !==0 && text.trim().length === 0)} block /></div>
+            <div className='compose-form__publish-button-wrapper'><Button text={publishText} onClick={this.handleSubmit} disabled={disabled || this.props.is_uploading || text.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]/g, "_").length > 500 || (text.length !==0 && text.trim().length === 0)} block /></div>
           </div>
         </div>
       </div>