Fix metaKey usage
This commit is contained in:
		
							parent
							
								
									534240240d
								
							
						
					
					
						commit
						fd1773c495
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -95,7 +95,7 @@ const ComposeForm = React.createClass({ | |||
|   }, | ||||
| 
 | ||||
|   handleKeyUp (e) { | ||||
|     if (e.keyCode === 13 && (e.ctrlKey || (e.metaKey && e.metaKey === '⌘-'))) { | ||||
|     if (e.keyCode === 13 && (e.ctrlKey || e.metaKey)) { | ||||
|       this.props.onSubmit(); | ||||
|     } | ||||
|   }, | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue