Fix default searchTokens (#15775)
This commit is contained in:
		
							parent
							
								
									8331fdf7e0
								
							
						
					
					
						commit
						2127f40e6b
					
				
					 1 changed files with 1 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -6,7 +6,6 @@ import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
			
		|||
import PropTypes from 'prop-types';
 | 
			
		||||
import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
			
		||||
import classNames from 'classnames';
 | 
			
		||||
import { List as ImmutableList } from 'immutable';
 | 
			
		||||
 | 
			
		||||
const textAtCursorMatchesToken = (str, caretPosition, searchTokens) => {
 | 
			
		||||
  let word;
 | 
			
		||||
| 
						 | 
				
			
			@ -55,7 +54,7 @@ export default class AutosuggestInput extends ImmutablePureComponent {
 | 
			
		|||
 | 
			
		||||
  static defaultProps = {
 | 
			
		||||
    autoFocus: true,
 | 
			
		||||
    searchTokens: ImmutableList(['@', ':', '#']),
 | 
			
		||||
    searchTokens: ['@', ':', '#'],
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  state = {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue