fix(compose_from): Do not autofocus on mobile (#4344)
This commit is contained in:
		
					parent
					
						
							
								1306d637a2
							
						
					
				
			
			
				commit
				
					
						32fa312b2a
					
				
			
		
					 1 changed files with 2 additions and 1 deletions
				
			
		|  | @ -15,6 +15,7 @@ import SensitiveButtonContainer from '../containers/sensitive_button_container'; | |||
| import EmojiPickerDropdown from './emoji_picker_dropdown'; | ||||
| import UploadFormContainer from '../containers/upload_form_container'; | ||||
| import WarningContainer from '../containers/warning_container'; | ||||
| import { isMobile } from '../../../is_mobile'; | ||||
| import ImmutablePureComponent from 'react-immutable-pure-component'; | ||||
| import { length } from 'stringz'; | ||||
| 
 | ||||
|  | @ -179,7 +180,7 @@ export default class ComposeForm extends ImmutablePureComponent { | |||
|             onSuggestionsClearRequested={this.onSuggestionsClearRequested} | ||||
|             onSuggestionSelected={this.onSuggestionSelected} | ||||
|             onPaste={onPaste} | ||||
|             autoFocus={!showSearch} | ||||
|             autoFocus={!showSearch && !isMobile(window.innerWidth)} | ||||
|           /> | ||||
| 
 | ||||
|           <EmojiPickerDropdown onPickEmoji={this.handleEmojiPick} /> | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue