Don't toot request with only blank characters (#2154)
* Don't toot request with only blank characters * Enable toot button if no text
This commit is contained in:
		
							parent
							
								
									53a09d3d26
								
							
						
					
					
						commit
						5440c95867
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -174,7 +174,7 @@ class ComposeForm extends React.PureComponent { | ||||||
| 
 | 
 | ||||||
|           <div className='compose-form__publish'> |           <div className='compose-form__publish'> | ||||||
|             <div className='character-counter__wrapper'><CharacterCounter max={500} text={text} /></div> |             <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> |         </div> | ||||||
|       </div> |       </div> | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue