Fix being able to add more than 4 hashtags to hashtag column in web UI (#17729)
This commit is contained in:
		
							parent
							
								
									db04dfc8a6
								
							
						
					
					
						commit
						e54fd73df2
					
				| 
						 | 
				
			
			@ -40,7 +40,17 @@ class ColumnSettings extends React.PureComponent {
 | 
			
		|||
    }
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  onSelect = mode => value => this.props.onChange(['tags', mode], value);
 | 
			
		||||
  onSelect = mode => value => {
 | 
			
		||||
    const oldValue = this.tags(mode);
 | 
			
		||||
 | 
			
		||||
    // Prevent changes that add more than 4 tags, but allow removing
 | 
			
		||||
    // tags that were already added before
 | 
			
		||||
    if ((value.length > 4) && !(value < oldValue)) {
 | 
			
		||||
      return;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    this.props.onChange(['tags', mode], value);
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  onToggle = () => {
 | 
			
		||||
    if (this.state.open && this.hasTags()) {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue