Require at least 2 characters before showing autosuggestions (#5065)
This commit is contained in:
		
							parent
							
								
									6dfeb64326
								
							
						
					
					
						commit
						9c8aad612e
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -20,7 +20,7 @@ const textAtCursorMatchesToken = (str, caretPosition) => {
 | 
				
			||||||
    word = str.slice(left, right + caretPosition);
 | 
					    word = str.slice(left, right + caretPosition);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  if (!word || word.trim().length < 2 || ['@', ':'].indexOf(word[0]) === -1) {
 | 
					  if (!word || word.trim().length < 3 || ['@', ':'].indexOf(word[0]) === -1) {
 | 
				
			||||||
    return [null, null];
 | 
					    return [null, null];
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue