fix: fix lowercase issue in DescItem component
This commit is contained in:
		
							parent
							
								
									6ed78e6459
								
							
						
					
					
						commit
						de1bb7dfde
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -22,7 +22,7 @@ export function DescTagItem({
 | 
			
		|||
        {items.length === 0 ? "N/A" : items.map(
 | 
			
		||||
            (x, i) => 
 | 
			
		||||
            <>
 | 
			
		||||
                <StyledLink key={x} to={`/search?allow_tag=${name}:${x}`}>{x}</StyledLink>
 | 
			
		||||
                <StyledLink key={x} to={`/search?allow_tag=${name.toLowerCase()}:${x}`}>{x}</StyledLink>
 | 
			
		||||
                {i + 1 < items.length && <span className="">, </span>}
 | 
			
		||||
            </>
 | 
			
		||||
        )}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue