Fix number of uses being shown again on trending hashtags in web UI (#19484)
This commit is contained in:
		@@ -56,7 +56,6 @@ export const ImmutableHashtag = ({ hashtag }) => (
 | 
			
		||||
    href={hashtag.get('url')}
 | 
			
		||||
    to={`/tags/${hashtag.get('name')}`}
 | 
			
		||||
    people={hashtag.getIn(['history', 0, 'accounts']) * 1 + hashtag.getIn(['history', 1, 'accounts']) * 1}
 | 
			
		||||
    uses={hashtag.getIn(['history', 0, 'uses']) * 1 + hashtag.getIn(['history', 1, 'uses']) * 1}
 | 
			
		||||
    history={hashtag.get('history').reverse().map((day) => day.get('uses')).toArray()}
 | 
			
		||||
  />
 | 
			
		||||
);
 | 
			
		||||
 
 | 
			
		||||
@@ -7278,6 +7278,7 @@ noscript {
 | 
			
		||||
    align-items: center;
 | 
			
		||||
    padding: 15px;
 | 
			
		||||
    border-bottom: 1px solid lighten($ui-base-color, 8%);
 | 
			
		||||
    gap: 15px;
 | 
			
		||||
 | 
			
		||||
    &:last-child {
 | 
			
		||||
      border-bottom: 0;
 | 
			
		||||
@@ -7319,8 +7320,6 @@ noscript {
 | 
			
		||||
      font-size: 24px;
 | 
			
		||||
      font-weight: 500;
 | 
			
		||||
      text-align: right;
 | 
			
		||||
      padding-right: 15px;
 | 
			
		||||
      margin-left: 5px;
 | 
			
		||||
      color: $secondary-text-color;
 | 
			
		||||
      text-decoration: none;
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user