Skip to content
Snippets Groups Projects
Unverified Commit 23d367f5 authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Fix too many featured tags causing navigation panel scroll in web UI (#19398)

parent 9215ad5f
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,7 @@ class FeaturedTags extends ImmutablePureComponent {
<div className='getting-started__trends'>
<h4><FormattedMessage id='account.featured_tags.title' defaultMessage="{name}'s featured hashtags" values={{ name: <bdi dangerouslySetInnerHTML={{ __html: account.get('display_name_html') }} /> }} /></h4>
{featuredTags.map(featuredTag => (
{featuredTags.take(3).map(featuredTag => (
<Hashtag
key={featuredTag.get('name')}
name={featuredTag.get('name')}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment