Fix #475 - add space after autocomplete
This commit is contained in:
		
							parent
							
								
									9bd3b11cfb
								
							
						
					
					
						commit
						1aae0cfc2c
					
				
					 2 changed files with 3 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -43,7 +43,8 @@ const Account = React.createClass({
 | 
			
		|||
    params: React.PropTypes.object.isRequired,
 | 
			
		||||
    dispatch: React.PropTypes.func.isRequired,
 | 
			
		||||
    account: ImmutablePropTypes.map,
 | 
			
		||||
    me: React.PropTypes.number.isRequired
 | 
			
		||||
    me: React.PropTypes.number.isRequired,
 | 
			
		||||
    children: React.PropTypes.node
 | 
			
		||||
  },
 | 
			
		||||
 | 
			
		||||
  mixins: [PureRenderMixin],
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -82,7 +82,7 @@ function removeMedia(state, mediaId) {
 | 
			
		|||
 | 
			
		||||
const insertSuggestion = (state, position, token, completion) => {
 | 
			
		||||
  return state.withMutations(map => {
 | 
			
		||||
    map.update('text', oldText => `${oldText.slice(0, position)}${completion}${oldText.slice(position + token.length)}`);
 | 
			
		||||
    map.update('text', oldText => `${oldText.slice(0, position)}${completion} ${oldText.slice(position + token.length)}`);
 | 
			
		||||
    map.set('suggestion_token', null);
 | 
			
		||||
    map.update('suggestions', Immutable.List(), list => list.clear());
 | 
			
		||||
  });
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue