Removed extra pipes from regex. (#11181)
This commit is contained in:
		
							parent
							
								
									07508b2045
								
							
						
					
					
						commit
						5b20284f6f
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -74,7 +74,7 @@ function search(value, { emojisToShowFilter, maxResults, include, exclude, custo
 | 
				
			||||||
      return [emojisList['-1']];
 | 
					      return [emojisList['-1']];
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    let values = value.toLowerCase().split(/[\s|,|\-|_]+/),
 | 
					    let values = value.toLowerCase().split(/[\s|,\-_]+/),
 | 
				
			||||||
      allResults = [];
 | 
					      allResults = [];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (values.length > 2) {
 | 
					    if (values.length > 2) {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue