[Glitch] Fix hashtag links always being lowercase
Port 5e35aa82802b09a63d4625fa9c1837ad75178553 to glitch-soc Signed-off-by: Thibaut Girka <thib@sitedethib.com>
This commit is contained in:
		
							parent
							
								
									e8e980cdac
								
							
						
					
					
						commit
						e8ad0a8006
					
				@ -172,7 +172,7 @@ export default class StatusContent extends React.PureComponent {
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  onHashtagClick = (hashtag, e) => {
 | 
					  onHashtagClick = (hashtag, e) => {
 | 
				
			||||||
    hashtag = hashtag.replace(/^#/, '').toLowerCase();
 | 
					    hashtag = hashtag.replace(/^#/, '');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (this.props.parseClick) {
 | 
					    if (this.props.parseClick) {
 | 
				
			||||||
      this.props.parseClick(e, `/timelines/tag/${hashtag}`);
 | 
					      this.props.parseClick(e, `/timelines/tag/${hashtag}`);
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user