forked from cybrespace/mastodon
		
	Add missing key attribute to .search-results__hashtag (#3607)
This commit is contained in:
		
							parent
							
								
									dcf73ddeff
								
							
						
					
					
						commit
						cd81a1c52a
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -41,7 +41,7 @@ class SearchResults extends ImmutablePureComponent {
 | 
				
			||||||
      hashtags = (
 | 
					      hashtags = (
 | 
				
			||||||
        <div className='search-results__section'>
 | 
					        <div className='search-results__section'>
 | 
				
			||||||
          {results.get('hashtags').map(hashtag =>
 | 
					          {results.get('hashtags').map(hashtag =>
 | 
				
			||||||
            <Link className='search-results__hashtag' to={`/timelines/tag/${hashtag}`}>
 | 
					            <Link key={hashtag} className='search-results__hashtag' to={`/timelines/tag/${hashtag}`}>
 | 
				
			||||||
              #{hashtag}
 | 
					              #{hashtag}
 | 
				
			||||||
            </Link>
 | 
					            </Link>
 | 
				
			||||||
          )}
 | 
					          )}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue