Fix number of uses being shown again on trending hashtags in web UI (#19484)
This commit is contained in:
parent
d9d722d74b
commit
923f06a07c
2 changed files with 1 additions and 3 deletions
|
@ -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()}
|
||||
/>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue